com.fitbur.mockito.internal.stubbing.BaseStubbing Maven / Gradle / Ivy
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito.internal.stubbing;
import com.fitbur.mockito.internal.stubbing.answers.CallsRealMethods;
import com.fitbur.mockito.internal.stubbing.answers.Returns;
import com.fitbur.mockito.internal.stubbing.answers.ThrowsException;
import com.fitbur.mockito.internal.stubbing.answers.ThrowsExceptionClass;
import com.fitbur.mockito.stubbing.OngoingStubbing;
public abstract class BaseStubbing implements OngoingStubbing {
public OngoingStubbing thenReturn(T value) {
return thenAnswer(new Returns(value));
}
@SuppressWarnings({"unchecked","vararg"})
public OngoingStubbing thenReturn(T value, T... values) {
OngoingStubbing stubbing = thenReturn(value);
if (values == null) {
//TODO below does not seem right
return stubbing.thenReturn(null);
}
for (T v: values) {
stubbing = stubbing.thenReturn(v);
}
return stubbing;
}
private OngoingStubbing thenThrow(Throwable throwable) {
return thenAnswer(new ThrowsException(throwable));
}
public OngoingStubbing thenThrow(Throwable... throwables) {
if (throwables == null) {
return thenThrow((Throwable) null);
}
OngoingStubbing stubbing = null;
for (Throwable t: throwables) {
if (stubbing == null) {
stubbing = thenThrow(t);
} else {
stubbing = stubbing.thenThrow(t);
}
}
return stubbing;
}
public OngoingStubbing thenThrow(Class extends Throwable> throwableType) {
return thenAnswer(new ThrowsExceptionClass(throwableType));
}
@SuppressWarnings ({"unchecked", "varargs"})
public OngoingStubbing thenThrow(Class extends Throwable> toBeThrown, Class extends Throwable>... nextToBeThrown) {
if (nextToBeThrown == null) {
thenThrow((Throwable) null);
}
OngoingStubbing stubbing = thenThrow(toBeThrown);
for (Class extends Throwable> t: nextToBeThrown) {
stubbing = stubbing.thenThrow(t);
}
return stubbing;
}
public OngoingStubbing thenCallRealMethod() {
return thenAnswer(new CallsRealMethods());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy