Searched refs:mCountryZonesFinder (Results 1 – 2 of 2) sorted by relevance
42 private CountryZonesFinder mCountryZonesFinder; field in TimeZoneDataTest46 mCountryZonesFinder = mock(CountryZonesFinder.class); in setUp()47 when(mCountryZonesFinder.lookupAllCountryIsoCodes()).thenReturn(new ArrayList<>()); in setUp()52 TimeZoneData timeZoneData = new TimeZoneData(mCountryZonesFinder); in testRegionsWithTimeZone()55 when(mCountryZonesFinder.lookupCountryTimeZones("US")).thenReturn(countryTimeZones); in testRegionsWithTimeZone()62 when(mCountryZonesFinder.lookupAllCountryIsoCodes()).thenReturn(emptyList()); in testGetRegionIds()63 TimeZoneData timeZoneData = new TimeZoneData(mCountryZonesFinder); in testGetRegionIds()66 when(mCountryZonesFinder.lookupAllCountryIsoCodes()).thenReturn(Arrays.asList("us", "GB")); in testGetRegionIds()67 timeZoneData = new TimeZoneData(mCountryZonesFinder); in testGetRegionIds()73 TimeZoneData timeZoneData = new TimeZoneData(mCountryZonesFinder); in testLookupCountryCodesForZoneId()[all …]
42 private final CountryZonesFinder mCountryZonesFinder; field in TimeZoneData57 mCountryZonesFinder = countryZonesFinder; in TimeZoneData()58 mRegionIds = getNormalizedRegionIds(mCountryZonesFinder.lookupAllCountryIsoCodes()); in TimeZoneData()69 List<CountryTimeZones> countryTimeZones = mCountryZonesFinder in lookupCountryCodesForZoneId()83 : mCountryZonesFinder.lookupCountryTimeZones(regionId); in lookupCountryTimeZones()