making custom version of 03g1-debugging with unit test stuff (I think?)

This commit is contained in:
Dan Buch
2010-02-23 20:11:14 -05:00
parent 2333135720
commit 948d15ad6b
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package me.tests
{
import me.Debugging;
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);
}
}
}