|
From: Robert P. <in...@ro...> - 2009-06-20 00:11:06
|
I tried to use AsUnit with an AS3 document class but got a compile error:
5000: The class 'TestBootstrapper' must subclass 'flash.display.MovieClip'
since it is linked to a library symbol of that type.
TestRunner currently subclasses Sprite. Has it always been this way?
Here's my class:
package
{
import asunit.textui.TestRunner;
public class TestBootstrapper extends TestRunner
{
public function TestBootstrapper()
{
start(AllTests);
}
}
}
Robert
|