程序包 cn.taketoday.test.context.junit4.statements
@NonNullApi
@NonNullFields
package cn.taketoday.test.context.junit4.statements
Custom JUnit 4
Statements used in the TestContext Framework.-
类类说明
FailOnTimeoutis a custom JUnitStatementwhich adds support for Framework's@Timedannotation by throwing an exception if the next statement in the execution chain takes more than the specified number of milliseconds.ProfileValueCheckeris a custom JUnitStatementthat checks whether a test class or test method is enabled in the current environment via Framework's@IfProfileValueannotation.RepeatTestis a custom JUnitStatementwhich adds support for Framework's@Repeatannotation by repeating the test the specified number of times.RunAfterTestClassCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit execution chain by callingafterTestClass()on the suppliedTestContextManager.RunAfterTestExecutionCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit 4 execution chain by callingafterTestExecution()on the suppliedTestContextManager.RunAfterTestMethodCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit execution chain by callingafterTestMethod()on the suppliedTestContextManager.RunBeforeTestClassCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit execution chain by callingbeforeTestClass()on the suppliedTestContextManager.RunBeforeTestExecutionCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit 4 execution chain by callingbeforeTestExecution()on the suppliedTestContextManager.RunBeforeTestMethodCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit execution chain by callingbeforeTestMethod()on the suppliedTestContextManager.RunPrepareTestInstanceCallbacksis a custom JUnitStatementwhich allows the TestContext Framework to be plugged into the JUnit execution chain by callingprepareTestInstance()on the suppliedTestContextManager.