Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1266 final String testCountryCode = "US"; in testCountryCodeChangedListener() local
1273 mCountryCodeChangedListenerCaptor.getValue().onCountryCodeChanged(testCountryCode); in testCountryCodeChangedListener()
1274 verify(mWifiCountryCodeChangeListener).onDriverCountryCodeChanged(testCountryCode); in testCountryCodeChangedListener()
1280 final String testCountryCode = "US"; in testSetStaCountryCodeSuccessful() local
1282 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() local
1294 mWifiNative.setStaCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeFailure()
1295 verify(mStaIfaceHal).setCountryCode(WIFI_IFACE_NAME, testCountryCode); in testSetStaCountryCodeFailure()
[all …]
DSupplicantStaIfaceHalTest.java1733 String testCountryCode = "US"; in testSetCountryCode() local
1736 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()