[
https://issues.apache.org/jira/browse/GEODE-2046?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Kirk Lund reassigned GEODE-2046:
--------------------------------
Assignee: Kirk Lund
> Tests should not use org.mockito.internal.stubbing.answers.CallsRealMethods
> ---------------------------------------------------------------------------
>
> Key: GEODE-2046
> URL: https://issues.apache.org/jira/browse/GEODE-2046
> Project: Geode
> Issue Type: Bug
> Components: tests
> Reporter: Kirk Lund
> Assignee: Kirk Lund
>
> CallsRealMethods is an internal class that should never be used in test code.
> Tests should instead use org.mockito.Mockito.CALLS_REAL_METHODS:
> import static org.mockito.Mockito.*;
> ...
> Foo foo = mock(Foo.class, CALLS_REAL_METHODS);
> when(foo.bar()).thenAnswer("bar");
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)