Sha256: dcc9e8caa00b454f0ba7cb9716710420b2ca3ccd79de6c1bdd37d1f28824c6a2
Contents?: true
Size: 1012 Bytes
Versions: 33
Compression:
Stored size: 1012 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" xmlns:flexunit="flexunit.flexui.*" creationComplete="onCreationComplete()"> <mx:Script> <![CDATA[ import flexunit.framework.TestSuite; import suite.*; // After everything is built, configure the test // runner to use the appropriate test suite and // kick off the unit tests private function onCreationComplete():void { testRunner.test = createSuite(); testRunner.startTest(); } // Creates the test suite to run private function createSuite():TestSuite { var ts:TestSuite = new TestSuite(); // TODO: Add more tests here to test more classes // by calling addTest as often as necessary ts.addTest(new AllTests()); return ts; } ]]> </mx:Script> <!-- flexunit provides a very handy default test runner GUI --> <flexunit:TestRunnerBase id="testRunner" width="100%" height="100%" /> </mx:Application>
Version data entries
33 entries across 33 versions & 2 rubygems