Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DVmsPublisherServiceTest.java90 private ArgumentCaptor<VmsBrokerService.PublisherListener> mProxyCaptor; field in VmsPublisherServiceTest
146 verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture()); in testOnClientConnected()
149 assertSame(mPublisherClient.mPublisherService, mProxyCaptor.getAllValues().get(0)); in testOnClientConnected()
152 assertSame(mPublisherClient2.mPublisherService, mProxyCaptor.getAllValues().get(1)); in testOnClientConnected()
160 verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture()); in testOnClientDisconnected()
166 verify(mBrokerService).removePublisherListener(mProxyCaptor.getAllValues().get(0)); in testOnClientDisconnected()
333 verify(mBrokerService, times(2)).addPublisherListener(mProxyCaptor.capture()); in testOnSubscriptionChange()
335 mProxyCaptor.getAllValues().get(0).onSubscriptionChange(SUBSCRIPTION_STATE); in testOnSubscriptionChange()