Home
last modified time | relevance | path

Searched refs:willCallRealMethod (Results 1 – 2 of 2) sorted by relevance

/external/mockito/src/main/java/org/mockito/
DBDDMockito.java138 BDDMyOngoingStubbing<T> willCallRealMethod(); in willCallRealMethod() method
183 public BDDMyOngoingStubbing<T> willCallRealMethod() { in willCallRealMethod() method in BDDMockito.BDDOngoingStubbingImpl
391 BDDStubber willCallRealMethod(); in willCallRealMethod() method
452 public BDDStubber willCallRealMethod() { in willCallRealMethod() method in BDDMockito.BDDStubberImpl
526 public static BDDStubber willCallRealMethod() { in willCallRealMethod() method in BDDMockito
/external/mockito/src/test/java/org/mockitousage/customization/
DBDDMockitoTest.java120 willReturn("foo").willCallRealMethod() in should_stub_consecutively_with_call_real_method()
214 willCallRealMethod().given(dog).bark(); in should_stub_by_delegating_to_real_method()
224 given(dog.bark()).willCallRealMethod(); in should_stub_by_delegating_to_real_method_using_typical_stubbing_syntax()