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

org.mockito.internal.stubbing.defaultanswers.GloballyConfiguredAnswer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.stubbing.defaultanswers;

import java.io.Serializable;

import org.mockito.configuration.IMockitoConfiguration;
import org.mockito.internal.configuration.GlobalConfiguration;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;

/**
 * Globally configured Answer.
 * 

* See javadoc for {@link IMockitoConfiguration} */ public class GloballyConfiguredAnswer implements Answer, Serializable { private static final long serialVersionUID = 3585893470101750917L; public Object answer(InvocationOnMock invocation) throws Throwable { return new GlobalConfiguration().getDefaultAnswer().answer(invocation); } }