Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSignalThresholdInfoTest.java73 ArrayList<SignalThresholdInfo> stList = setSignalThresholdInfoConstructor(); in testDefaultThresholdsConstruction() local
76 for (SignalThresholdInfo st : stList) { in testDefaultThresholdsConstruction()
85 ArrayList<SignalThresholdInfo> stList = setSignalThresholdInfoConstructor(); in testDefaultThresholdsParcel() local
87 for (SignalThresholdInfo st : stList) { in testDefaultThresholdsParcel()
100 ArrayList<SignalThresholdInfo> stList = new ArrayList<>(); in testGetSignalThresholdInfo() local
101 stList.add(new SignalThresholdInfo(0, 0, 0, null, false)); in testGetSignalThresholdInfo()
102 stList.add(new SignalThresholdInfo(SignalThresholdInfo.SIGNAL_RSSI, HYSTERESIS_MS, in testGetSignalThresholdInfo()
105 assertThat(stList.get(0).getThresholds()).isEqualTo(null); in testGetSignalThresholdInfo()
106 assertThat(stList.get(1).getSignalMeasurement()).isEqualTo(SignalThresholdInfo.SIGNAL_RSSI); in testGetSignalThresholdInfo()
107 assertThat(stList.get(1).getThresholds()).isEqualTo(mRssiThresholds); in testGetSignalThresholdInfo()
[all …]