Home
last modified time | relevance | path

Searched refs:USER_CONNECT_CHOICE (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DNetworkSuggestionStoreDataTest.java67 private static final String USER_CONNECT_CHOICE = "SomeNetworkProfileId"; field in NetworkSuggestionStoreDataTest
308 ewns.connectChoice = USER_CONNECT_CHOICE; in serializeDeserializeSingleNetworkSuggestionFromSingleApp()
326 assertEquals(USER_CONNECT_CHOICE, deserializedSuggestion.connectChoice); in serializeDeserializeSingleNetworkSuggestionFromSingleApp()
DWifiNetworkSuggestionsManagerTest.java160 private static final String USER_CONNECT_CHOICE = "SomeNetworkProfileId"; field in WifiNetworkSuggestionsManagerTest
784 listener.onConnectChoiceSet(List.of(config), USER_CONNECT_CHOICE, TEST_RSSI); in testAddNetworkSuggestionsSuccessOnInPlaceModificationWhenNotInWcm() local
822 assertEquals(USER_CONNECT_CHOICE, matchedSuggestion.connectChoice); in testAddNetworkSuggestionsSuccessOnInPlaceModificationWhenNotInWcm()
5056 USER_CONNECT_CHOICE, TEST_RSSI); in testSetUserConnectChoice() local
5061 assertEquals(USER_CONNECT_CHOICE, ewns.connectChoice); in testSetUserConnectChoice()
5065 listener.onConnectChoiceRemoved(USER_CONNECT_CHOICE); in testSetUserConnectChoice()
5078 listener.onConnectChoiceRemoved(USER_CONNECT_CHOICE); in testSetUserConnectChoice()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java194 private static final String USER_CONNECT_CHOICE = "SomeNetworkProfileId"; field in PasspointManagerTest
916 when(origProvider.getConnectChoice()).thenReturn(USER_CONNECT_CHOICE); in addSavedProviderWithExistingConfig()
931 verify(origProvider).setUserConnectChoice(eq(USER_CONNECT_CHOICE), eq(TEST_RSSI)); in addSavedProviderWithExistingConfig()
2859 listener.onConnectChoiceSet(Collections.singletonList(wifiConfig), USER_CONNECT_CHOICE, in testSetUserConnectChoice() local
2861 verify(provider).setUserConnectChoice(USER_CONNECT_CHOICE, TEST_RSSI); in testSetUserConnectChoice()
2869 when(provider.getConnectChoice()).thenReturn(USER_CONNECT_CHOICE); in testSetUserConnectChoice()
2870 listener.onConnectChoiceRemoved(USER_CONNECT_CHOICE); in testSetUserConnectChoice()
2878 listener.onConnectChoiceRemoved(USER_CONNECT_CHOICE); in testSetUserConnectChoice()
DPasspointProviderTest.java136 private static final String USER_CONNECT_CHOICE = "SomeNetworkProfileId"; field in PasspointProviderTest
1969 mProvider.setUserConnectChoice(USER_CONNECT_CHOICE, TEST_RSSI); in testSetUserConnectChoice()
1970 assertEquals(USER_CONNECT_CHOICE, mProvider.getConnectChoice()); in testSetUserConnectChoice()
1973 assertEquals(USER_CONNECT_CHOICE, in testSetUserConnectChoice()