Sha256: 5eb78813266821cc2a1df0476d6d31f6ea942b3e4c62c00242c67cbcfbeca8d1
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:fu="http://www.adobe.com/2009/flexUnitUIRunner" creationComplete="creationCompleteHandler()"> <fx:Script> <![CDATA[ import org.flexunit.internals.TraceListener; import org.flexunit.listeners.AirCIListener; import org.flexunit.listeners.UIListener; import org.flexunit.runner.FlexUnitCore; private var _core:FlexUnitCore; protected function creationCompleteHandler():void { _core = new FlexUnitCore(); _core.addListener(new TraceListener()); _core.addListener(new AirCIListener()); _core.addListener(new UIListener(ui)); _core.run(AllTests); } ]]> </fx:Script> <fu:TestRunnerBase id="ui" width="100%" height="100%"/> </s:WindowedApplication>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flexunit-0.0.9.pre | lib/flexunit4/generators/templates/AIRRunner.mxml |