com.fitbur.mockito.Answers Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito;
import com.fitbur.mockito.internal.stubbing.answers.CallsRealMethods;
import com.fitbur.mockito.internal.stubbing.defaultanswers.TriesToReturnSelf;
import com.fitbur.mockito.internal.stubbing.defaultanswers.GloballyConfiguredAnswer;
import com.fitbur.mockito.internal.stubbing.defaultanswers.ReturnsDeepStubs;
import com.fitbur.mockito.internal.stubbing.defaultanswers.ReturnsMocks;
import com.fitbur.mockito.internal.stubbing.defaultanswers.ReturnsSmartNulls;
import com.fitbur.mockito.invocation.InvocationOnMock;
import com.fitbur.mockito.stubbing.Answer;
/**
* Enumeration of pre-configured mock answers
*
* You can use it to pass extra parameters to @Mock annotation, see more info here: {@link Mock}
*
* Example:
*
* @Mock(answer = RETURNS_DEEP_STUBS) UserProvider userProvider;
*
* This is not the full list of Answers available in Mockito. Some interesting answers can be found in com.fitbur.mockito.stubbing.answers package.
*/
public enum Answers implements Answer