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

org.mockito.listeners.StubbingLookupEvent Maven / Gradle / Ivy

/*
 * Copyright (c) 2018 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.listeners;

import java.util.Collection;

import org.mockito.invocation.Invocation;
import org.mockito.mock.MockCreationSettings;
import org.mockito.stubbing.Stubbing;

/**
 * Represent an information about the looked up stubbing
 *
 * @since 2.24.6
 */
public interface StubbingLookupEvent {

    /**
     * @return The invocation that causes stubbing lookup
     * @since 2.24.6
     */
    Invocation getInvocation();

    /**
     * @return Looked up stubbing. It can be null, which indicates that the invocation was not stubbed
     * @since 2.24.6
     */
    Stubbing getStubbingFound();

    /**
     * @return All stubbings declared on the mock object that we are invoking
     * @since 2.24.6
     */
    Collection getAllStubbings();

    /**
     * @return Settings of the mock object that we are invoking
     * @since 2.24.6
     */
    MockCreationSettings getMockSettings();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy