Mercurial > hg > audiodb
comparison 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 |
comparison
equal
deleted
inserted
replaced
731:65134dd772fc | 732:3a0b9700b3d2 |
---|---|
1 package asunit.framework { | |
2 import flash.display.DisplayObjectContainer; | |
3 import flash.events.IEventDispatcher; | |
4 | |
5 public interface Test extends IEventDispatcher { | |
6 function countTestCases():int; | |
7 function getName():String; | |
8 function getTestMethods():Array; | |
9 function toString():String; | |
10 function setResult(result:TestListener):void; | |
11 function run():void; | |
12 function runBare():void; | |
13 function getCurrentMethod():String; | |
14 function getIsComplete():Boolean; | |
15 function setContext(context:DisplayObjectContainer):void; | |
16 function getContext():DisplayObjectContainer; | |
17 } | |
18 } |