Class SpringRepeat
java.lang.Object
org.junit.runners.model.Statement
org.springframework.test.context.junit4.statements.SpringRepeat
SpringRepeat is a custom JUnit Statement which adds support
 for Spring's @Repeat
 annotation by repeating the test the specified number of times.- Since:
 - 3.0
 - Author:
 - Sam Brannen
 - See Also:
 
- 
Field Summary
Fields - 
Constructor Summary
ConstructorsConstructorDescriptionSpringRepeat(Statement next, Method testMethod) Construct a newSpringRepeatstatement for the suppliedtestMethod, retrieving the configured repeat count from the@Repeatannotation on the supplied method.SpringRepeat(Statement next, Method testMethod, int repeat) Construct a newSpringRepeatstatement for the suppliedtestMethodandrepeatcount. - 
Method Summary
 
- 
Field Details
- 
logger
 
 - 
 - 
Constructor Details
- 
SpringRepeat
Construct a newSpringRepeatstatement for the suppliedtestMethod, retrieving the configured repeat count from the@Repeatannotation on the supplied method.- Parameters:
 next- the nextStatementin the execution chaintestMethod- the current test method- See Also:
 
 - 
SpringRepeat
Construct a newSpringRepeatstatement for the suppliedtestMethodandrepeatcount.- Parameters:
 next- the nextStatementin the execution chaintestMethod- the current test methodrepeat- the configured repeat count for the current test method
 
 - 
 - 
Method Details