Mercurial > hg > audiodb
annotate bindings/as3/ext/asunit/framework/Test.as @ 765:337e72088f76
Fix for some sample bugs
a + b ? c : d does not do what I think it does. That bug mostly masked
a thorough logic error in building the table of counts of possible sequences;
there was too much cumulativeness.
There apparently remain problems
author | mas01cr |
---|---|
date | Thu, 02 Jun 2011 16:31:35 +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 } |