Searched refs:captorIntent (Results 1 – 1 of 1) sorted by relevance
405 ArgumentCaptor<Intent> captorIntent = ArgumentCaptor.forClass(Intent.class); in testCarrierConfigChanged() local413 verify(mPhone, times(1)).sendBroadcast(captorIntent.capture(), any()); in testCarrierConfigChanged()414 Intent capturedIntent = captorIntent.getValue(); in testCarrierConfigChanged()427 verify(mPhone, times(2)).sendBroadcast(captorIntent.capture(), any()); in testCarrierConfigChanged()428 capturedIntent = captorIntent.getValue(); in testCarrierConfigChanged()442 verify(mPhone, times(3)).sendBroadcast(captorIntent.capture(), any()); in testCarrierConfigChanged()443 capturedIntent = captorIntent.getValue(); in testCarrierConfigChanged()600 ArgumentCaptor<Intent> captorIntent = ArgumentCaptor.forClass(Intent.class); in testSendBroadcastWhenDmaChanged() local607 verify(mPhone, times(1)).sendBroadcast(captorIntent.capture(), any()); in testSendBroadcastWhenDmaChanged()608 Intent capturedIntent = captorIntent.getValue(); in testSendBroadcastWhenDmaChanged()[all …]