Home
last modified time | relevance | path

Searched refs:StubbingLookupListener (Results 1 – 5 of 5) sorted by relevance

/external/mockito/src/test/java/org/mockito/internal/listeners/
DStubbingLookupNotifierTest.java46 StubbingLookupListener listener1 = mock(StubbingLookupListener.class); in call_on_stubbing_lookup_method_of_listeners_with_correct_event()
47 StubbingLookupListener listener2 = mock(StubbingLookupListener.class); in call_on_stubbing_lookup_method_of_listeners_with_correct_event()
48 List<StubbingLookupListener> listeners = Lists.newArrayList(listener1, listener2); in call_on_stubbing_lookup_method_of_listeners_with_correct_event()
/external/mockito/src/main/java/org/mockito/internal/creation/settings/
DCreationSettings.java7 import org.mockito.internal.listeners.StubbingLookupListener;
33 …protected final List<StubbingLookupListener> stubbingLookupListeners = new ArrayList<StubbingLooku…
130 public List<StubbingLookupListener> getStubbingLookupListeners() { in getStubbingLookupListeners()
/external/mockito/src/main/java/org/mockito/internal/listeners/
DStubbingLookupNotifier.java19 List<StubbingLookupListener> listeners = creationSettings.getStubbingLookupListeners(); in notifyStubbedAnswerLookup()
24 for (StubbingLookupListener listener : listeners) { in notifyStubbedAnswerLookup()
DStubbingLookupListener.java22 public interface StubbingLookupListener { interface
/external/mockito/src/main/java/org/mockito/internal/junit/
DDefaultStubbingLookupListener.java9 import org.mockito.internal.listeners.StubbingLookupListener;
25 class DefaultStubbingLookupListener implements StubbingLookupListener {