HomeSort by relevance Sort by last modified time
    Searched refs:barMock (Results 1 - 2 of 2) sorted by null

  /external/mockito/src/test/java/org/mockitousage/basicapi/
MocksSerializationForAnnotationTest.java 37 @Mock(serializable=true) Bar barMock;
47 when(barMock.doSomething()).thenAnswer(new ThrowsException(new RuntimeException()));
50 serializeAndBack(barMock);
MocksSerializationTest.java 49 Bar barMock = mock(Bar.class, withSettings().serializable());
51 when(barMock.doSomething()).thenAnswer(new ThrowsException(new RuntimeException()));
54 serializeAndBack(barMock);

Completed in 665 milliseconds