| Class | Description |
---|
| AsyncStatementBase |
The AsyncStatementBase is responsible for notifiying a parent token that a task has been completed. |
| ExpectAsync |
The ExpectAsync is a decorator that is responsible for determing
whether a specific test method is expecting an asynchronous response. |
| ExpectException |
The ExpectException is a decorator that is responsible for determing
whether a specific test method throws an expected exception. |
| Fail |
The Fail class is responsible for throwing a failure error when it
is evaluated. |
| FailOnTimeout |
The FailOnTimeout is a decorator that is responsible for determing
whether a specific test method has exceeded a timeout period for execution. |
| InvokeMethod |
The InvokeMethod is responsible for invoking a specific test method in
given test class. |
| MethodRuleBase |
Base implemention class for an IMethodRule. |
| RunAfters |
The RunAfters is a SequencerWithDecoration for potential methods that have
After metadata and should be run after a test has finished. |
| RunAftersClass |
The RunAftersClass is a SequencerWithDecoration for potential methods that have
AfterClass metadata and should be run after all of the tests in the test class have finished. |
| RunAftersInline |
Runs the [After] methods of a test in the BlockFlexUnit4ClassRunner inline after
the actual test has executed. |
| RunBefores |
The RunBefores is a SequencerWithDecoration for potential methods that have
Before metadata and should be run before a test has started. |
| RunBeforesClass |
The RunBeforesClass is a SequencerWithDecoration for potential methods that have
BeforeClass metadata and should be run before the test class has been created. |
| RunBeforesInline |
Runs the [Before] methods of a test in the BlockFlexUnit4ClassRunner inline before
procceding to the actual test. |
| SequencerWithDecoration |
Classes that inherit SequencerWithDecoration are used to run methods that run either
before or after a class or before or after a test. |
| StackAndFrameManagement |
The StackAndFrameManagement decorator implements green threading to deal with flash
frames. |
| StatementSequencer |
The StatementSequencer is a class that is responsible for the execution of
IAsyncStatements. |