Package | org.flexunit.runner.notification |
Interface | public interface ITemporalRunListener extends IRunListener |
Method | Defined By | ||
---|---|---|---|
![]() | testAssumptionFailure(failure:Failure):void
Called when an atomic test flags that it assumes a condition that is false. | IRunListener | |
![]() | testFailure(failure:Failure):void
Called when an atomic test fails. | IRunListener | |
![]() | testFinished(description:IDescription):void
Called when an atomic test has finished, whether the test succeeds or fails. | IRunListener | |
![]() | testIgnored(description:IDescription):void
Called when a test will not be run, generally because a test method is annotated
with the Ignore tag. | IRunListener | |
![]() | testRunFinished(result:Result):void
Called when all tests have finished and the test run is done. | IRunListener | |
![]() | testRunStarted(description:IDescription):void
Called before any tests have been run and the test run is starting. | IRunListener | |
![]() | testStarted(description:IDescription):void
Called when an atomic test is about to be begin. | IRunListener | |
testTimed(description:IDescription, runTime:Number):void
Called by the notifier when a test run completed
| ITemporalRunListener |
testTimed | () | method |
public function testTimed(description:IDescription, runTime:Number):void
Called by the notifier when a test run completed
Parameters
description:IDescription — the test that completed
| |
runTime:Number — time in ms that the test took to execute
|