Home
last modified time | relevance | path

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

/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbCountryCodeTest.java78 private static final String ISO_COUNTRY_CODE = "UK"; field in UwbCountryCodeTest
182 when(mTelephonyManager.getNetworkCountryIso()).thenReturn(ISO_COUNTRY_CODE); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListEmptyAndFlagEnabled()
189 ISO_COUNTRY_CODE.getBytes(StandardCharsets.UTF_8)); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListEmptyAndFlagEnabled()
190 verify(mListener).onCountryCodeChanged(STATUS_CODE_OK, ISO_COUNTRY_CODE); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListEmptyAndFlagEnabled()
198 when(mTelephonyManager.getNetworkCountryIso()).thenReturn(ISO_COUNTRY_CODE); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListNullAndFlagEnabled()
205 ISO_COUNTRY_CODE.getBytes(StandardCharsets.UTF_8)); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListNullAndFlagEnabled()
206 verify(mListener).onCountryCodeChanged(STATUS_CODE_OK, ISO_COUNTRY_CODE); in testInitializeCountryCodeFromTelephonyWhenSubscriptionListNullAndFlagEnabled()
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DTelephonyDatabaseHelperTest.java112 assertTrue(Arrays.asList(upgradedColumns).contains(SubscriptionManager.ISO_COUNTRY_CODE)); in databaseHelperOnUpgrade_hasCountryIsoField()