|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.junit.runners.model.Statement
org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks
public class RunBeforeTestClassCallbacks
RunBeforeTestClassCallbacks
is a custom JUnit 4.5+
Statement
which allows the Spring TestContext Framework to
be plugged into the JUnit execution chain by calling
beforeTestClass()
on the
supplied TestContextManager
.
evaluate()
,
RunAfterTestMethodCallbacks
Field Summary | |
---|---|
private org.junit.runners.model.Statement |
next
|
private TestContextManager |
testContextManager
|
Constructor Summary | |
---|---|
RunBeforeTestClassCallbacks(org.junit.runners.model.Statement next,
TestContextManager testContextManager)
Constructs a new RunBeforeTestClassCallbacks statement. |
Method Summary | |
---|---|
void |
evaluate()
Calls TestContextManager.beforeTestClass() and then invokes the
next Statement in the execution chain (typically an instance of
RunBefores ). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private final org.junit.runners.model.Statement next
private final TestContextManager testContextManager
Constructor Detail |
---|
public RunBeforeTestClassCallbacks(org.junit.runners.model.Statement next, TestContextManager testContextManager)
RunBeforeTestClassCallbacks
statement.
next
- the next Statement
in the execution chaintestContextManager
- the TestContextManager upon which to call
beforeTestClass()
Method Detail |
---|
public void evaluate() throws java.lang.Throwable
TestContextManager.beforeTestClass()
and then invokes the
next Statement
in the execution chain (typically an instance of
RunBefores
).
evaluate
in class org.junit.runners.model.Statement
java.lang.Throwable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |