Home
last modified time | relevance | path

Searched refs:KEY_SECURITY_WPA2_WPA3 (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSecuritySettingsTest.java26 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA2_WPA3;
67 new WifiHotspotSecurityViewModel.ViewItem(KEY_SECURITY_WPA2_WPA3);
83 when(mRadioButtonWpa2Wpa3.getKey()).thenReturn(KEY_SECURITY_WPA2_WPA3); in setUp()
91 when(mSettings.findPreference(KEY_SECURITY_WPA2_WPA3)).thenReturn(mRadioButtonWpa2Wpa3); in setUp()
177 verify(mViewModel).handleRadioButtonClicked(KEY_SECURITY_WPA2_WPA3); in onRadioButtonClicked_clickedWpa2Wpa3_setSecurityTypeCorrectly()
DWifiHotspotSecurityViewModelTest.java30 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA2_WPA3;
164 mViewModel.handleRadioButtonClicked(KEY_SECURITY_WPA2_WPA3); in handleRadioButtonClicked_keyWpa2Wpa3_setSecurityTypeCorrectly()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiHotspotSecurityViewModel.java49 public static final String KEY_SECURITY_WPA2_WPA3 = "wifi_hotspot_security_wpa2_wpa3"; field in WifiHotspotSecurityViewModel
64 mViewItemMap.put(SECURITY_TYPE_WPA3_SAE_TRANSITION, new ViewItem(KEY_SECURITY_WPA2_WPA3)); in WifiHotspotSecurityViewModel()