blob: b5b5b72664ca3b51d2258a65a4c137ff09d8b3b7 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="onCreationComplete()">
<mx:Script>
<![CDATA[
import org.antlr.runtime.test.AllTests;
import flexunit.junit.JUnitTestRunner;
[Bindable]
private var runner : JUnitTestRunner;
private function onCreationComplete() : void
{
status.text = "Please wait running test suite...";
runner = new JUnitTestRunner();
runner.run( new AllTests(), onTestComplete );
}
private function onTestComplete() : void
{
status.text = "Finished running test suite.";
fscommand( "quit" );
}
]]>
</mx:Script>
<mx:Label id="status" />
</mx:Application>