summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Silberstein <silberst@google.com>2017-03-31 22:35:37 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-31 22:35:37 +0000
commit08f89bfe689f85ca1271f41d756d5cd6aa7db21c (patch)
tree9738e4131b88d6ae5480d4c1935cd1aa864094f4
parent218b74e298e14936f013563716d7e486e23d844c (diff)
parent0ca439f9ed48669f192aec950492015c8484be37 (diff)
Merge "WifiStateMachinePrimeTest: update any matcher" am: 398b7247f7 am: b8fe1431ce
am: 0ca439f9ed Change-Id: Idcb7ced56cdb39238bc76e07fe25125a1d0bdd96
-rw-r--r--tests/wifitests/src/com/android/server/wifi/WifiStateMachinePrimeTest.java10
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiStateMachinePrimeTest.java b/tests/wifitests/src/com/android/server/wifi/WifiStateMachinePrimeTest.java
index 398be0cf0..49c7d18d6 100644
--- a/tests/wifitests/src/com/android/server/wifi/WifiStateMachinePrimeTest.java
+++ b/tests/wifitests/src/com/android/server/wifi/WifiStateMachinePrimeTest.java
@@ -114,7 +114,7 @@ public class WifiStateMachinePrimeTest {
}).when(mWifiInjector).makeSoftApManager(any(INetworkManagementService.class),
any(SoftApManager.Listener.class),
any(IApInterface.class),
- any(WifiConfiguration.class));
+ any());
mWifiStateMachinePrime.enterSoftAPMode(wifiConfig);
mLooper.dispatchAll();
Log.e("WifiStateMachinePrimeTest", "check fromState: " + fromState);
@@ -143,7 +143,6 @@ public class WifiStateMachinePrimeTest {
* Test that WifiStateMachinePrime properly enters the SoftApModeActiveState from the
* WifiDisabled state.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testEnterSoftApModeFromDisabled() throws Exception {
enterSoftApActiveMode();
@@ -154,7 +153,6 @@ public class WifiStateMachinePrimeTest {
* Expectations: When going from one state to another, any interfaces that are still up are torn
* down.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testEnterSoftApModeFromDifferentState() throws Exception {
when(mWifiInjector.makeWificond()).thenReturn(mWificond);
@@ -167,7 +165,6 @@ public class WifiStateMachinePrimeTest {
/**
* Test that we can disable wifi fully from the SoftApModeActiveState.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testDisableWifiFromSoftApModeActiveState() throws Exception {
enterSoftApActiveMode();
@@ -201,7 +198,6 @@ public class WifiStateMachinePrimeTest {
* Expectation: When switching out of SoftApModeActiveState we stop the SoftApManager and tear
* down existing interfaces.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testSwitchModeWhenSoftApActiveMode() throws Exception {
enterSoftApActiveMode();
@@ -247,7 +243,6 @@ public class WifiStateMachinePrimeTest {
* Expectations: We should exit the current SoftApModeState and re-enter before successfully
* entering the SoftApModeActiveState.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testEnterSoftApModeActiveWhenAlreadyInSoftApMode() throws Exception {
when(mWifiInjector.makeWificond()).thenReturn(mWificond);
@@ -264,7 +259,6 @@ public class WifiStateMachinePrimeTest {
* SoftApModeActiveState.
* Expectations: We should exit the SoftApModeActiveState and stop the SoftApManager.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testSoftApFailureWhenActive() throws Exception {
enterSoftApActiveMode();
@@ -280,7 +274,6 @@ public class WifiStateMachinePrimeTest {
* SoftApModeActiveState.
* Expectations: We should exit the SoftApModeActiveState and stop the SoftApManager.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testSoftApDisabledWhenActive() throws Exception {
enterSoftApActiveMode();
@@ -312,7 +305,6 @@ public class WifiStateMachinePrimeTest {
*
* Expectations: WifiInjector should be called with a null config.
*/
- @DisabledForUpdateToAnyMatcher
@Test
public void testNullConfigIsPassedToWifiInjector() throws Exception {
enterSoftApActiveMode(null);