Navigation Menu

Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
minor change to test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
joelhooks committed Nov 4, 2009
1 parent 4f96838 commit 458f788
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/SwiftSuspendersTests.mxml
@@ -1,26 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:fu="http://www.adobe.com/2009/flexUnitUIRunner"
creationComplete="onCreationComplete()"
backgroundColor="#000000" horizontalScrollPolicy="off" verticalScrollPolicy="off">

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:fu="http://www.adobe.com/2009/flexUnitUIRunner"
creationComplete="onCreationComplete()"
backgroundColor="#000000"
horizontalScrollPolicy="off"
verticalScrollPolicy="off">

<mx:Script>
<![CDATA[
import org.flexunit.listeners.CIListener;
import org.flexunit.listeners.UIListener;
import org.flexunit.runner.FlexUnitCore;
import org.swiftsuspenders.suites.SwiftSuspendersTestSuite;
private var core:FlexUnitCore;
private function onCreationComplete():void
{
core = new FlexUnitCore();
core=new FlexUnitCore();
core.addListener(new CIListener());
core.addListener(new UIListener(uiListener));
core.run(SwiftSuspendersTestSuite);
}
]]>
</mx:Script>
<fu:TestRunnerBase id="uiListener" />
<fu:TestRunnerBase id="uiListener"/>
</mx:Application>

0 comments on commit 458f788

Please sign in to comment.