Searched refs:collectionListenerCaptor (Results 1 – 3 of 3) sorted by relevance
70 ArgumentCaptor<NotifCollectionListener> collectionListenerCaptor = in setUp() local72 verify(collection).addCollectionListener(collectionListenerCaptor.capture()); in setUp()73 NotifCollectionListener listener = collectionListenerCaptor.getValue(); in setUp()
193 ArgumentCaptor<NotifCollectionListener> collectionListenerCaptor = in NotificationTestHelper() local195 verify(collection).addCollectionListener(collectionListenerCaptor.capture()); in NotificationTestHelper()196 mBindPipelineEntryListener = collectionListenerCaptor.getValue(); in NotificationTestHelper()
127 val collectionListenerCaptor = ArgumentCaptor.forClass(NotifCollectionListener::class.java) regex128 verify(notificationCollection).addCollectionListener(collectionListenerCaptor.capture())129 notifCollectionListener = collectionListenerCaptor.value!!