Home
last modified time | relevance | path

Searched refs:stringReturningMethod (Results 1 – 6 of 6) sorted by relevance

/external/mockito/src/test/java/org/mockito/internal/stubbing/answers/
DInvocationInfoTest.java98 InvocationInfo stringReturningMethod = new InvocationInfo(getLastInvocation()); in isVoid_invocationNonVoidMethod_returnFalse() local
100 assertThat(stringReturningMethod.isVoid()).isFalse(); in isVoid_invocationNonVoidMethod_returnFalse()
/external/mockito/src/test/java/org/mockitousage/basicapi/
DMocksSerializationForAnnotationTest.java75 when(imethodsMock.stringReturningMethod()).thenReturn(value); in should_allow_mock_and_string_value_to_be_serializable()
82 assertEquals(value, readObject.stringReturningMethod()); in should_allow_mock_and_string_value_to_be_serializable()
DMocksSerializationTest.java85 when(mock.stringReturningMethod()).thenReturn(value); in should_allow_mock_and_string_value_to_be_serializable()
92 assertEquals(value, readObject.stringReturningMethod()); in should_allow_mock_and_string_value_to_be_serializable()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DSmartNullsStubbingTest.java90 assertEquals("", mock.stringReturningMethod()); in shouldReturnOrdinaryEmptyValuesForOrdinaryTypes()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java207 String stringReturningMethod(); in stringReturningMethod() method
DMethodsImpl.java390 public String stringReturningMethod() { in stringReturningMethod() method in MethodsImpl