org.springframework.test.context.junit4.statements
Class SpringRepeat
java.lang.Object
org.junit.runners.model.Statement
org.springframework.test.context.junit4.statements.SpringRepeat
public class SpringRepeat
- extends org.junit.runners.model.Statement
SpringRepeat
is a custom JUnit 4.5+ Statement
which adds
support for Spring's @Repeat
annotation by repeating the
test for the specified number of times.
- Since:
- 3.0
- Author:
- Sam Brannen
- See Also:
evaluate()
Method Summary |
void |
evaluate()
Invokes the next statement in the execution chain for
the specified repeat count. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
logger
protected static final Log logger
SpringRepeat
public SpringRepeat(org.junit.runners.model.Statement next,
Method testMethod,
int repeat)
- Constructs a new
SpringRepeat
statement.
- Parameters:
next
- the next Statement
in the execution chaintestMethod
- the current test methodrepeat
- the configured repeat count for the current test method- See Also:
Repeat.value()
evaluate
public void evaluate()
throws Throwable
- Invokes the next
statement
in the execution chain for
the specified repeat count.
- Specified by:
evaluate
in class org.junit.runners.model.Statement
- Throws:
Throwable