Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSecuritySettingsTest.java27 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA3;
65 new WifiHotspotSecurityViewModel.ViewItem(KEY_SECURITY_WPA3);
82 when(mRadioButtonWpa3.getKey()).thenReturn(KEY_SECURITY_WPA3); in setUp()
90 when(mSettings.findPreference(KEY_SECURITY_WPA3)).thenReturn(mRadioButtonWpa3); in setUp()
170 verify(mViewModel).handleRadioButtonClicked(KEY_SECURITY_WPA3); in onRadioButtonClicked_clickedWpa3_setSecurityTypeCorrectly()
DWifiHotspotSecurityViewModelTest.java31 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA3;
157 mViewModel.handleRadioButtonClicked(KEY_SECURITY_WPA3); in handleRadioButtonClicked_keyWpa3_setSecurityTypeCorrectly()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiHotspotSecurityViewModel.java48 public static final String KEY_SECURITY_WPA3 = "wifi_hotspot_security_wpa3"; field in WifiHotspotSecurityViewModel
63 mViewItemMap.put(SECURITY_TYPE_WPA3_SAE, new ViewItem(KEY_SECURITY_WPA3)); in WifiHotspotSecurityViewModel()