All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.junit.MockitoTestListener Maven / Gradle / Ivy

There is a newer version: 5.12.0
Show newest version
package org.mockito.internal.junit;

import org.mockito.listeners.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.
 */
public interface MockitoTestListener extends MockCreationListener {
    void testFinished(TestFinishedEvent event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy