Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/network/telephony/
H A DNetworkSelectSettingsTest.java119 List<CellInfo> testList = Arrays.asList( in doAggregation_hasDuplicateItemsDiffCellIdCase1_removeSamePlmnRatItem() local
126 assertThat(mNetworkSelectSettings.doAggregation(testList)).isEqualTo(expected); in doAggregation_hasDuplicateItemsDiffCellIdCase1_removeSamePlmnRatItem()
131 List<CellInfo> testList = Arrays.asList( in doAggregation_hasDuplicateItemsDiffCellIdCase2_removeSamePlmnRatItem() local
140 assertThat(mNetworkSelectSettings.doAggregation(testList)).isEqualTo(expected); in doAggregation_hasDuplicateItemsDiffCellIdCase2_removeSamePlmnRatItem()
145 List<CellInfo> testList = Arrays.asList( in doAggregation_hasDuplicateItemsDiffMccMncCase1_removeSamePlmnRatItem() local
152 assertThat(mNetworkSelectSettings.doAggregation(testList)).isEqualTo(expected); in doAggregation_hasDuplicateItemsDiffMccMncCase1_removeSamePlmnRatItem()
157 List<CellInfo> testList = Arrays.asList( in doAggregation_hasDuplicateItemsDiffMccMncCase2_removeSamePlmnRatItem() local
166 assertThat(mNetworkSelectSettings.doAggregation(testList)).isEqualTo(expected); in doAggregation_hasDuplicateItemsDiffMccMncCase2_removeSamePlmnRatItem()
171 List<CellInfo> testList = Arrays.asList( in doAggregation_hasDuplicateItemsDiffMccMncCase3_removeSamePlmnRatItem() local
179 assertThat(mNetworkSelectSettings.doAggregation(testList)).isEqualTo(expected); in doAggregation_hasDuplicateItemsDiffMccMncCase3_removeSamePlmnRatItem()
/aosp12/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DIPControls.java137 int testList[] = new int[1]; in launchDemo() local
138 testList[0] = id; in launchDemo()
141 intent.putExtra("tests", testList); in launchDemo()
222 int testList[] = new int[count]; in btnRun() local
226 testList[count++] = i; in btnRun()
231 intent.putExtra("tests", testList); in btnRun()
/aosp12/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A DIPControlsJB.java135 int testList[] = new int[1]; in launchDemo() local
136 testList[0] = id; in launchDemo()
139 intent.putExtra("tests", testList); in launchDemo()
225 int testList[] = new int[count]; in btnRun() local
229 testList[count++] = i; in btnRun()
234 intent.putExtra("tests", testList); in btnRun()
/aosp12/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBlasControls.java127 int testList[] = new int[count]; in btnRun() local
131 testList[count++] = i; in btnRun()
136 intent.putExtra("tests", testList); in btnRun()
/aosp12/frameworks/base/errorprone/tests/java/com/google/errorprone/bugpatterns/android/
H A DEfficientCollectionsCheckerTest.java64 public void testList() { in testList() method in EfficientCollectionsCheckerTest
H A DEfficientParcelableCheckerTest.java79 public void testList() { in testList() method in EfficientParcelableCheckerTest
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/
H A DWifiManagerTest.java2219 List<WifiNetworkSuggestion> testList = new ArrayList<>(); in addGetRemoveNetworkSuggestions() local
2225 .thenReturn(testList); in addGetRemoveNetworkSuggestions()
2228 mWifiManager.addNetworkSuggestions(testList)); in addGetRemoveNetworkSuggestions()
2232 assertEquals(testList, mWifiManager.getNetworkSuggestions()); in addGetRemoveNetworkSuggestions()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiServiceImplTest.java6126 List<WifiNetworkSuggestion> testList = new ArrayList<>(); in testGetNetworkSuggestions() local
6127 when(mWifiNetworkSuggestionsManager.get(anyString(), anyInt())).thenReturn(testList); in testGetNetworkSuggestions()
6129 assertEquals(testList, mWifiServiceImpl.getNetworkSuggestions(TEST_PACKAGE_NAME)); in testGetNetworkSuggestions()