Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
DWifiHotspotSecuritySettingsTest.java24 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_NONE;
71 new WifiHotspotSecurityViewModel.ViewItem(KEY_SECURITY_NONE);
85 when(mRadioButtonNone.getKey()).thenReturn(KEY_SECURITY_NONE); in setUp()
93 when(mSettings.findPreference(KEY_SECURITY_NONE)).thenReturn(mRadioButtonNone); in setUp()
191 verify(mViewModel).handleRadioButtonClicked(KEY_SECURITY_NONE); in onRadioButtonClicked_clickedNone_setSecurityTypeCorrectly()
DWifiHotspotSecurityViewModelTest.java28 import static com.android.settings.wifi.tether.WifiHotspotSecurityViewModel.KEY_SECURITY_NONE;
178 mViewModel.handleRadioButtonClicked(KEY_SECURITY_NONE); in handleRadioButtonClicked_keyNone_setSecurityTypeCorrectly()
/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiHotspotSecurityViewModel.java51 public static final String KEY_SECURITY_NONE = "wifi_hotspot_security_none"; field in WifiHotspotSecurityViewModel
66 mViewItemMap.put(SECURITY_TYPE_OPEN, new ViewItem(KEY_SECURITY_NONE)); in WifiHotspotSecurityViewModel()