Statements used in the Spring TestContext Framework.See: Description
| Class | Description | 
|---|---|
| ProfileValueChecker | 
ProfileValueChecker is a custom JUnit Statement that checks
 whether a test class or test method is enabled in the current environment
 via Spring's @IfProfileValue annotation. | 
| RunAfterTestClassCallbacks | 
RunAfterTestClassCallbacks is a custom JUnit Statement which allows
 the Spring TestContext Framework to be plugged into the JUnit execution chain
 by calling afterTestClass() on the supplied
 TestContextManager. | 
| RunAfterTestMethodCallbacks | 
RunAfterTestMethodCallbacks is a custom JUnit Statement which allows
 the Spring TestContext Framework to be plugged into the JUnit execution chain
 by calling afterTestMethod() on the supplied
 TestContextManager. | 
| RunBeforeTestClassCallbacks | 
RunBeforeTestClassCallbacks is a custom JUnit Statement which allows
 the Spring TestContext Framework to be plugged into the JUnit execution chain
 by calling beforeTestClass() on the
 supplied TestContextManager. | 
| RunBeforeTestMethodCallbacks | 
RunBeforeTestMethodCallbacks is a custom JUnit Statement which allows
 the Spring TestContext Framework to be plugged into the JUnit execution chain
 by calling beforeTestMethod() on the supplied TestContextManager. | 
| RunPrepareTestInstanceCallbacks | 
RunPrepareTestInstanceCallbacks is a custom JUnit Statement which
 allows the Spring TestContext Framework to be plugged into the JUnit
 execution chain by calling prepareTestInstance() on the supplied TestContextManager. | 
| SpringFailOnTimeout | 
SpringFailOnTimeout is a custom JUnit Statement which adds
 support for Spring's @Timed
 annotation by throwing an exception if the next statement in the execution
 chain takes more than the specified number of milliseconds. | 
| SpringRepeat | 
SpringRepeat is a custom JUnit Statement which adds support
 for Spring's @Repeat
 annotation by repeating the test the specified number of times. | 
Statements used in the Spring TestContext Framework.