2010-02-24 01:11:14 +00:00
|
|
|
package me.tests
|
|
|
|
{
|
2010-02-24 01:58:18 +00:00
|
|
|
import me.DebuggingApp;
|
2010-02-24 01:11:14 +00:00
|
|
|
|
|
|
|
import mx.core.Application;
|
|
|
|
import org.flexunit.listeners.UIListener;
|
|
|
|
import org.flexunit.runner.TestRunnerBase;
|
|
|
|
import org.flexunit.runner.FlexUnitCore;
|
|
|
|
|
|
|
|
public class TestDebugging extends Application
|
|
|
|
{
|
|
|
|
public var uiListener:TestRunnerBase;
|
|
|
|
private var core:FlexUnitCore;
|
|
|
|
|
|
|
|
public function TestDebugging():void
|
|
|
|
{
|
|
|
|
this.addEventListener("creationComplete", runMe);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function runMe():void
|
|
|
|
{
|
|
|
|
core = new FlexUnitCore();
|
|
|
|
core.addListener(new UIListener(uiListener));
|
|
|
|
core.run(Debugging);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|