Home | History | Annotate | Download | only in model

Lines Matching defs:US

53         when(mCountryZonesFinder.lookupCountryTimeZones("US")).thenReturn(countryTimeZones);
54 assertThat(timeZoneData.lookupCountryTimeZones("US").getCountryTimeZones())
64 when(mCountryZonesFinder.lookupAllCountryIsoCodes()).thenReturn(Arrays.asList("us", "GB"));
66 assertThat(timeZoneData.getRegionIds()).containsExactly("US", "GB");
73 CountryTimeZones US = mock(CountryTimeZones.class);
74 when(US.getCountryIso()).thenReturn("us");
75 when(US.getTimeZoneMappings()).thenReturn(Arrays.asList(
85 .thenReturn(Arrays.asList(US, GB));
87 .containsExactly("US", "GB");