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

org.mockito.MockitoFramework Maven / Gradle / Ivy

There is a newer version: 5.13.0
Show newest version
package org.mockito;

import org.mockito.listeners.StubbingListener;

/**
 * Mockito framework settings and lifecycle listeners, for advanced users or for integrating with other frameworks.
 *
 * @since 2.*
 */
@Incubating
public interface MockitoFramework {

    /**
     * Sets new {@link StubbingListener}.
     * null is permitted and removes any previously set listener.
     * If you set the stubbing listener, ensure that you have cleared it afterwards.
     * See examples in Mockito codebase how {@link #setStubbingListener(StubbingListener)} is used.
     */
    @Incubating
    void setStubbingListener(StubbingListener listener);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy