blob: 2541f63df216f22b2696fdbcc77c938e57e8579a [file] [log] [blame]
/*
* 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.DeprecatedOngoingStubbing;
import org.mockito.stubbing.OngoingStubbing;
public class ConsecutiveStubbing<T> extends BaseStubbing<T> {
private final InvocationContainerImpl invocationContainerImpl;
public ConsecutiveStubbing(InvocationContainerImpl invocationContainerImpl) {
this.invocationContainerImpl = invocationContainerImpl;
}
public OngoingStubbing<T> thenAnswer(Answer<?> answer) {
invocationContainerImpl.addConsecutiveAnswer(answer);
return this;
}
public OngoingStubbing<T> then(Answer<?> answer) {
return thenAnswer(answer);
}
public DeprecatedOngoingStubbing<T> toAnswer(Answer<?> answer) {
invocationContainerImpl.addConsecutiveAnswer(answer);
return this;
}
public <M> M getMock() {
return (M) invocationContainerImpl.invokedMock();
}
}