diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2019-08-26 19:28:31 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-08-26 19:28:31 +0000 |
commit | e8b5da4cd4f31ee92095648dd1c9a0cd0483869e (patch) | |
tree | 16a137dc1ffa218cf9ec27dad4ec53fca888bf55 /tests | |
parent | 07ba9343d2142ee08bffa4febb1e7813d10d7774 (diff) | |
parent | 8a12ed4598483421f6bc8af41f03c248e2b7204b (diff) |
Merge "WifiVendorHal: Post callback to invoke RadioModeChange callback" into qt-qpr1-dev
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java b/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java index 5a95b952f..aa44023ae 100644 --- a/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java +++ b/tests/wifitests/src/com/android/server/wifi/WifiVendorHalTest.java @@ -3110,6 +3110,7 @@ public class WifiVendorHalTest { radioModeInfos.add(radioModeInfo1); mIWifiChipEventCallbackV12.onRadioModeChange(radioModeInfos); + mLooper.dispatchAll(); verify(mVendorHalRadioModeChangeHandler).onDbs(); verifyNoMoreInteractions(mVendorHalRadioModeChangeHandler); @@ -3142,6 +3143,7 @@ public class WifiVendorHalTest { radioModeInfos.add(radioModeInfo1); mIWifiChipEventCallbackV12.onRadioModeChange(radioModeInfos); + mLooper.dispatchAll(); verify(mVendorHalRadioModeChangeHandler).onSbs(WifiScanner.WIFI_BAND_5_GHZ); verifyNoMoreInteractions(mVendorHalRadioModeChangeHandler); @@ -3171,6 +3173,7 @@ public class WifiVendorHalTest { radioModeInfos.add(radioModeInfo0); mIWifiChipEventCallbackV12.onRadioModeChange(radioModeInfos); + mLooper.dispatchAll(); verify(mVendorHalRadioModeChangeHandler).onScc(WifiScanner.WIFI_BAND_5_GHZ); verifyNoMoreInteractions(mVendorHalRadioModeChangeHandler); @@ -3200,6 +3203,7 @@ public class WifiVendorHalTest { radioModeInfos.add(radioModeInfo0); mIWifiChipEventCallbackV12.onRadioModeChange(radioModeInfos); + mLooper.dispatchAll(); verify(mVendorHalRadioModeChangeHandler).onMcc(WifiScanner.WIFI_BAND_BOTH); verifyNoMoreInteractions(mVendorHalRadioModeChangeHandler); @@ -3230,6 +3234,7 @@ public class WifiVendorHalTest { radioModeInfos.add(radioModeInfo1); mIWifiChipEventCallbackV12.onRadioModeChange(radioModeInfos); + mLooper.dispatchAll(); // Ignored.... verifyNoMoreInteractions(mVendorHalRadioModeChangeHandler); |