@Test
@Ignore("Bug to fix !!! see issue 399")
public void BUG_ISSUE_399_try_some_mocks_with_current_answers() throws Exception {
IMethods iMethods = mock(IMethods.class, withSettings().serializable().defaultAnswer(RETURNS_DEEP_STUBS));
when(iMethods.iMethodsReturningMethod().linkedListReturningMethod().contains(anyString())).thenReturn(false);
serializeAndBack(iMethods);
}
}