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

com.fitbur.mockito.internal.stubbing.answers.DoesNothing 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.answers;

import java.io.Serializable;

import com.fitbur.mockito.invocation.InvocationOnMock;
import com.fitbur.mockito.stubbing.Answer;

public class DoesNothing implements Answer, Serializable {
    
    private static final long serialVersionUID = 4840880517740698416L;

    public Object answer(InvocationOnMock invocation) throws Throwable {
        return null;
    }
}