Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/build/content/
DTestContentAnalyzerTest.java126 File testCases = new File(rootDir, "testcases"); in testAnalyzeXtsSuite_withChange() local
127 testCases.mkdirs(); in testAnalyzeXtsSuite_withChange()
128 new File(testCases, "module1").mkdirs(); in testAnalyzeXtsSuite_withChange()
129 new File(testCases, "module1/someapk.apk").createNewFile(); in testAnalyzeXtsSuite_withChange()
130 new File(testCases, "module2").mkdirs(); in testAnalyzeXtsSuite_withChange()
131 new File(testCases, "module2/otherfile.xml").createNewFile(); in testAnalyzeXtsSuite_withChange()
162 File testCases = new File(rootDir, "testcases"); in testAnalyzeXtsSuite_withDiscovery() local
163 testCases.mkdirs(); in testAnalyzeXtsSuite_withDiscovery()
164 new File(testCases, "module1").mkdirs(); in testAnalyzeXtsSuite_withDiscovery()
165 new File(testCases, "module1/someapk.apk").createNewFile(); in testAnalyzeXtsSuite_withDiscovery()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/
DGranularRetriableTestWrapperTest.java106 public BasicFakeTest(ArrayList<TestDescription> testCases) { in BasicFakeTest() argument
107 mTestCases = testCases; in BasicFakeTest()
109 for (TestDescription testCase : testCases) { in BasicFakeTest()
172 public FakeTest(ArrayList<TestDescription> testCases) { in FakeTest() argument
173 super(testCases); in FakeTest()
253 public void setTestCasesByRun(String runName, List<TestDescription> testCases) { in setTestCasesByRun() argument
254 mRunTestsMap.put(runName, testCases); in setTestCasesByRun()
255 for (TestDescription testCase : testCases) { in setTestCasesByRun()
258 mMaxTestCount = Math.max(mMaxTestCount, testCases.size()); in setTestCasesByRun()
270 List<TestDescription> testCases = mRunTestsMap.get(runName); in run() local
[all …]
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/typeitem/
DCommonTypeStringTest.kt210 @JvmStatic @Parameterized.Parameters fun testCases() = testCases in <lambda>() method
212 private val testCases = in <lambda>() constant
/tools/tradefederation/contrib/src/com/android/uicd/tests/
DUiConductorTest.java216 List<UiConductorTestCase> testCases = new ArrayList<>(); in run() local
220 testCases.addAll(getTestCases(key, file)); in run()
236 for (UiConductorTestCase testCase : testCases) { in run()