Home
last modified time | relevance | path

Searched refs:mockBadgeCurve (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/wifi/
H A DWifiUtilsTest.java65 private RssiCurve mockBadgeCurve; field in WifiUtilsTest
90 .thenReturn(buildScoredNetworkWithGivenBadgeCurve(mockBadgeCurve)); in testVerboseSummaryString_showsScanResultSpeedLabel()
91 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.VERY_FAST); in testVerboseSummaryString_showsScanResultSpeedLabel()
/aosp12/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
H A DAccessPointTest.java104 @Mock private RssiCurve mockBadgeCurve; field in AccessPointTest
384 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.VERY_FAST);
400 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.FAST);
416 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.MODERATE);
432 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.SLOW);
448 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.VERY_FAST);
463 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) AccessPoint.Speed.VERY_FAST);
555 return buildScoredNetworkWithGivenBadgeCurve(mockBadgeCurve);
1052 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) fallbackSpeed); in testSpeedLabelFallbackScoreIgnoresNullCurves()
1166 when(mockBadgeCurve.lookupScore(anyInt())).thenReturn((byte) newSpeed); in testUpdateScoresRefreshesScoredNetworkCacheWithNewSpeed()