Searched refs:stList (Results 1 – 1 of 1) sorted by relevance
73 ArrayList<SignalThresholdInfo> stList = setSignalThresholdInfoConstructor(); in testDefaultThresholdsConstruction() local76 for (SignalThresholdInfo st : stList) { in testDefaultThresholdsConstruction()85 ArrayList<SignalThresholdInfo> stList = setSignalThresholdInfoConstructor(); in testDefaultThresholdsParcel() local87 for (SignalThresholdInfo st : stList) { in testDefaultThresholdsParcel()100 ArrayList<SignalThresholdInfo> stList = new ArrayList<>(); in testGetSignalThresholdInfo() local101 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 …]