/examples/GradientControl/src/GradientControlTestDriver.mxml
http://gmaps-utility-library-flash.googlecode.com/ · Macromedia eXtensible Markup Language · 23 lines · 19 code · 4 blank · 0 comment · 0 complexity · 01f96b7fb3a9521c70583cb79a26b841 MD5 · raw file
- <?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 com.google.maps.extras.gradients.test.AllTests;
- import flexunit.framework.TestSuite;
-
- // Create the test suite and run the tests
- private function onCreationComplete():void
- {
- testRunner.test = AllTests.getAllTests();
- testRunner.startTest();
- }
-
- ]]>
- </mx:Script>
-
- <!-- FlexUnit GUI Component -->
- <flexunit:TestRunnerBase id="testRunner" width="100%" height="100%" />
- </mx:Application>