Searched refs:testCountryCode (Results 1 – 2 of 2) sorted by relevance
1266 final String testCountryCode = "US"; in testCountryCodeChangedListener() local1273 mCountryCodeChangedListenerCaptor.getValue().onCountryCodeChanged(testCountryCode); in testCountryCodeChangedListener()1274 verify(mWifiCountryCodeChangeListener).onDriverCountryCodeChanged(testCountryCode); in testCountryCodeChangedListener()1280 final String testCountryCode = "US"; in testSetStaCountryCodeSuccessful() local1282 mWifiNative.setStaCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeSuccessful()1283 verify(mStaIfaceHal).setCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeSuccessful()1285 verify(mWifiCountryCodeChangeListener).onSetCountryCodeSucceeded(testCountryCode); in testSetStaCountryCodeSuccessful()1292 final String testCountryCode = "US"; in testSetStaCountryCodeFailure() local1294 mWifiNative.setStaCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeFailure()1295 verify(mStaIfaceHal).setCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeFailure()[all …]
1733 String testCountryCode = "US"; in testSetCountryCode() local1736 assertFalse(mDut.setCountryCode(WLAN0_IFACE_NAME, testCountryCode)); in testSetCountryCode()1741 assertTrue(mDut.setCountryCode(WLAN0_IFACE_NAME, testCountryCode)); in testSetCountryCode()1742 verify(mISupplicantStaIfaceMock).setCountryCode(eq(testCountryCode.getBytes())); in testSetCountryCode()