Package org.spincast.testing.junitrunner
Interface RepeatedClassAfterMethodProvider
- All Known Implementing Classes:
AppBasedDefaultContextTypesTestingBase
,AppBasedTestingBase
,AppBasedWebsocketTestingBase
,NoAppCustomContextTypesTestingBase
,NoAppStartHttpServerCustomContextTypesTestingBase
,NoAppStartHttpServerTestingBase
,NoAppTestingBase
,NoAppWebsocketTestingBase
,SpincastTestBase
public interface RepeatedClassAfterMethodProvider
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called after all the loops of the class as specified by theRepeatUntilFailure
orRepeatUntilSuccess
annotations.
-
Method Details
-
afterClassLoops
void afterClassLoops()Called after all the loops of the class as specified by theRepeatUntilFailure
orRepeatUntilSuccess
annotations.This will only be called if the beforeClass() method completed successfully, so you can be sure that the instanciation of the class is complete here.
-