org.mockito.internal.stubbing.defaultanswers.Answers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.stubbing.defaultanswers;
import org.mockito.Mockito;
import org.mockito.internal.stubbing.answers.CallsRealMethods;
import org.mockito.stubbing.Answer;
/**
* Enumeration of pre-configured mock answers
*
* @deprecated - please use Answers from top Mockito package: {@link org.mockito.Answers}
*
* WARNING Those answers no longer are used by the framework!!! Please use {@link org.mockito.Answers}
*
* See {@link Mockito} for more information.
*/
@Deprecated
public enum Answers {
RETURNS_DEFAULTS(new GloballyConfiguredAnswer()),
RETURNS_SMART_NULLS(new ReturnsSmartNulls()),
RETURNS_MOCKS(new ReturnsMocks()),
RETURNS_DEEP_STUBS(new ReturnsDeepStubs()),
CALLS_REAL_METHODS(new CallsRealMethods())
;
private Answer