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

org.mockito.internal.stubbing.ConsecutiveStubbing Maven / Gradle / Ivy

There is a newer version: 5.11.0
Show newest version
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.stubbing;

import org.mockito.stubbing.Answer;
import org.mockito.stubbing.OngoingStubbing;

public class ConsecutiveStubbing extends BaseStubbing {
    private final InvocationContainerImpl invocationContainerImpl;

    public ConsecutiveStubbing(InvocationContainerImpl invocationContainerImpl) {
        this.invocationContainerImpl = invocationContainerImpl;
    }

    public OngoingStubbing thenAnswer(Answer answer) {
        invocationContainerImpl.addConsecutiveAnswer(answer);
        return this;
    }

    public OngoingStubbing then(Answer answer) {
        return thenAnswer(answer);
    }

    @SuppressWarnings("unchecked")
    public  M getMock() {
        return (M) invocationContainerImpl.invokedMock();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy