Searched refs:mockConfig (Results 1 – 2 of 2) sorted by relevance
487 SatelliteConfig mockConfig = mock(SatelliteConfig.class); in testUpdateSatelliteConfigData() local488 doReturn(List.of("USA", "JAP")).when(mockConfig).getDeviceSatelliteCountryCodes(); in testUpdateSatelliteConfigData()489 doReturn(mockConfig).when(mMockSatelliteController).getSatelliteConfig(); in testUpdateSatelliteConfigData()490 doReturn(false).when(mockConfig).isSatelliteDataForAllowedRegion(); in testUpdateSatelliteConfigData()498 .when(mockConfig).getDeviceSatelliteCountryCodes(); in testUpdateSatelliteConfigData()499 doReturn(null).when(mockConfig).isSatelliteDataForAllowedRegion(); in testUpdateSatelliteConfigData()509 .when(mockConfig).getDeviceSatelliteCountryCodes(); in testUpdateSatelliteConfigData()510 doReturn(true).when(mockConfig).isSatelliteDataForAllowedRegion(); in testUpdateSatelliteConfigData()511 doReturn(mockFile).when(mockConfig).getSatelliteS2CellFile(mMockContext); in testUpdateSatelliteConfigData()518 doReturn(mockConfig).when(mMockSatelliteController).getSatelliteConfig(); in testUpdateSatelliteConfigData()[all …]
480 mockConfig(SPEED_2GHZ_5GHZ, SECURITY_TYPE_WPA3_SAE_TRANSITION); in setSpeedType_2g5ghzTo6ghz_setConfigSecurityToWpa3()787 mockConfig(securityType, SPEED_2GHZ); in mockConfigSecurityType()791 mockConfig(SECURITY_TYPE_WPA3_SAE, speedType); in mockConfigSpeedType()794 private void mockConfig(int securityType, int speedType) { in mockConfig() method in WifiHotspotRepositoryTest