Home
last modified time | relevance | path

Searched refs:giveMeSomeString (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/debugging/
DVerboseLoggingOfInvocationsOnMockTest.java58 foo.giveMeSomeString("Klipsch"); in shouldNotPrintInvocationOnMockWithoutSetting()
88 given(foo.giveMeSomeString("Klipsch")).willReturn("earbuds"); in shouldPrintStubbedInvocationOnMockToStdOut()
91 foo.giveMeSomeString("Klipsch"); in shouldPrintStubbedInvocationOnMockToStdOut()
145 given(foo.giveMeSomeString("Apple")).willReturn( in usage()
149 foo.giveMeSomeString("Shure"); in usage()
150 foo.giveMeSomeString("Apple"); in usage()
176 public String giveMeSomeString(String param) { in giveMeSomeString() method in VerboseLoggingOfInvocationsOnMockTest.FooImpl
DInvocationListenerCallbackTest.java39 willReturn("basil").given(foo).giveMeSomeString("herb"); in should_call_single_listener_when_mock_return_normally()
42 foo.giveMeSomeString("herb"); in should_call_single_listener_when_mock_return_normally()
58 foo.giveMeSomeString("herb"); in should_call_listeners_in_order()
73 foo.giveMeSomeString("a"); in should_allow_same_listener()
74 foo.giveMeSomeString("b"); in should_allow_same_listener()
86 given(foo.giveMeSomeString("herb")).willReturn("rosemary"); in should_call_all_listener_when_mock_return_normally()
89 foo.giveMeSomeString("herb"); in should_call_all_listener_when_mock_return_normally()
DFoo.java8 String giveMeSomeString(String param); in giveMeSomeString() method