annotate bindings/as3/ext/asunit/framework/Test.as @ 770:c54bc2ffbf92 tip

update tags
author convert-repo
date Fri, 16 Dec 2011 11:34:01 +0000
parents 3a0b9700b3d2
children
rev   line source
mas01mj@732 1 package asunit.framework {
mas01mj@732 2 import flash.display.DisplayObjectContainer;
mas01mj@732 3 import flash.events.IEventDispatcher;
mas01mj@732 4
mas01mj@732 5 public interface Test extends IEventDispatcher {
mas01mj@732 6 function countTestCases():int;
mas01mj@732 7 function getName():String;
mas01mj@732 8 function getTestMethods():Array;
mas01mj@732 9 function toString():String;
mas01mj@732 10 function setResult(result:TestListener):void;
mas01mj@732 11 function run():void;
mas01mj@732 12 function runBare():void;
mas01mj@732 13 function getCurrentMethod():String;
mas01mj@732 14 function getIsComplete():Boolean;
mas01mj@732 15 function setContext(context:DisplayObjectContainer):void;
mas01mj@732 16 function getContext():DisplayObjectContainer;
mas01mj@732 17 }
mas01mj@732 18 }