Searched refs:mockDetector (Results 1 - 1 of 1) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallLogManagerTest.java596 CountryDetector mockDetector = (CountryDetector) mContext.getSystemService(
598 when(mockDetector.detectCountry()).thenReturn(testCountry);
602 verifyCountryIso(mockDetector, resultIso);
609 CountryDetector mockDetector = (CountryDetector) mContext.getSystemService(
611 when(mockDetector.detectCountry()).thenReturn(testCountry);
614 ArgumentCaptor<CountryListener> captor = verifyCountryIso(mockDetector, resultIso);
624 private ArgumentCaptor<CountryListener> verifyCountryIso(CountryDetector mockDetector, argument
627 verify(mockDetector).addCountryListener(captor.capture(), any(Looper.class));

Completed in 29 milliseconds