Mercurial > hg > audiodb
diff bindings/as3/ext/asunit/framework/Test.as @ 732:3a0b9700b3d2
* Initial AS3 commit
author | mas01mj |
---|---|
date | Tue, 14 Sep 2010 16:47:10 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bindings/as3/ext/asunit/framework/Test.as Tue Sep 14 16:47:10 2010 +0000 @@ -0,0 +1,18 @@ +package asunit.framework { + import flash.display.DisplayObjectContainer; + import flash.events.IEventDispatcher; + + public interface Test extends IEventDispatcher { + function countTestCases():int; + function getName():String; + function getTestMethods():Array; + function toString():String; + function setResult(result:TestListener):void; + function run():void; + function runBare():void; + function getCurrentMethod():String; + function getIsComplete():Boolean; + function setContext(context:DisplayObjectContainer):void; + function getContext():DisplayObjectContainer; + } +} \ No newline at end of file