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

com.fitbur.mockito.internal.stubbing.BaseStubbing Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * 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 throwableType) {
        return thenAnswer(new ThrowsExceptionClass(throwableType));
    }

    @SuppressWarnings ({"unchecked", "varargs"})
    public OngoingStubbing thenThrow(Class toBeThrown, Class... nextToBeThrown) {
        if (nextToBeThrown == null) {
            thenThrow((Throwable) null);
        }
        OngoingStubbing stubbing = thenThrow(toBeThrown);
        for (Class t: nextToBeThrown) {
            stubbing = stubbing.thenThrow(t);
        }
        return stubbing;
    }

    public OngoingStubbing thenCallRealMethod() {
        return thenAnswer(new CallsRealMethods());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy