Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSecuritySettingsTest.java25 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA2;
69 new WifiHotspotSecurityViewModel.ViewItem(KEY_SECURITY_WPA2);
84 when(mRadioButtonWpa2.getKey()).thenReturn(KEY_SECURITY_WPA2); in setUp()
92 when(mSettings.findPreference(KEY_SECURITY_WPA2)).thenReturn(mRadioButtonWpa2); in setUp()
184 verify(mViewModel).handleRadioButtonClicked(KEY_SECURITY_WPA2); in onRadioButtonClicked_clickedWpa2_setSecurityTypeCorrectly()
DWifiHotspotSecurityViewModelTest.java29 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_WPA2;
171 mViewModel.handleRadioButtonClicked(KEY_SECURITY_WPA2); in handleRadioButtonClicked_keyWpa2_setSecurityTypeCorrectly()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiHotspotSecurityViewModel.java50 public static final String KEY_SECURITY_WPA2 = "wifi_hotspot_security_wpa2"; field in WifiHotspotSecurityViewModel
65 mViewItemMap.put(SECURITY_TYPE_WPA2_PSK, new ViewItem(KEY_SECURITY_WPA2)); in WifiHotspotSecurityViewModel()