Skip to content

Commit

Permalink
Updated main to use new Core concept, and updated the asunit library SWC
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebayes committed Apr 4, 2010
1 parent 01f3838 commit 866a995
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Binary file modified libs/asunit4-alpha.swc
Binary file not shown.
13 changes: 10 additions & 3 deletions tests/org/osflash/signals/AllTestsRunner.as
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
package org.osflash.signals
{
import asunit.ui.TextRunnerUI;
import asunit.core.TextCore;

import flash.display.MovieClip;

import org.osflash.signals.AllTests;

[SWF(width='1000', height='800', backgroundColor='#333333', frameRate='31')]
public class AllTestsRunner extends TextRunnerUI
public class AllTestsRunner extends MovieClip
{
private var core:TextCore;

public function AllTestsRunner()
{
run(org.osflash.signals.AllTests);
core = new TextCore();
core.start(AllTests, null, this);
}
}
}
Expand Down

0 comments on commit 866a995

Please sign in to comment.