Package org.mockito.internal.junit
Interface MockitoTestListener
-
- All Superinterfaces:
MockCreationListener
,MockitoListener
- All Known Implementing Classes:
MismatchReportingTestListener
,NoOpTestListener
,StrictStubsRunnerTestListener
,UniversalTestListener
public interface MockitoTestListener extends MockCreationListener
Internal test listener that helps decoupling JUnit internals from Mockito "business" logic. If we ever want to expose this type publicly, it should not extend MockCreationListener because we want our listeners to be single-method interfaces for easier use and evolution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
testFinished(TestFinishedEvent event)
-
Methods inherited from interface org.mockito.listeners.MockCreationListener
onMockCreated, onStaticMockCreated
-
-
-
-
Method Detail
-
testFinished
void testFinished(TestFinishedEvent event)
-
-