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

org.mockito.internal.InternalMockHandler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal;

import java.util.List;

import org.mockito.internal.stubbing.InvocationContainer;
import org.mockito.invocation.MockHandler;
import org.mockito.mock.MockCreationSettings;
import org.mockito.stubbing.Answer;
import org.mockito.stubbing.VoidMethodStubbable;

@SuppressWarnings("unchecked")
public interface InternalMockHandler extends MockHandler {

    MockCreationSettings getMockSettings();

    VoidMethodStubbable voidMethodStubbable(T mock);
    
    void setAnswersForStubbing(List answers);

    InvocationContainer getInvocationContainer();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy