Sha256: 36df082ad99932269e478e566c9cf124d77c364e263bac3c752779f28eb44958

Contents?: true

Size: 762 Bytes

Versions: 5

Compression:

Stored size: 762 Bytes

Contents

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="creationCompleteHandler()"
    x="0" y="0">

    <mx:Script>
        <![CDATA[
            import org.flexunit.internals.TraceListener;
            import org.flexunit.listeners.AirCIListener;
            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.run(AllTests);
            }
        ]]>
    </mx:Script>

</mx:WindowedApplication>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flexunit-0.0.8.pre lib/flexunit4/generators/templates/AIRRunner.mxml
flexunit-0.0.7.pre lib/flexunit4/generators/templates/AIRRunner.mxml
flexunit-0.0.6.pre lib/flexunit4/generators/templates/AIRRunner.mxml
flexunit-0.0.5.pre lib/flexunit4/generators/templates/AIRRunner.mxml
flexunit-0.0.4.pre lib/flexunit4/generators/templates/AIRRunner.mxml