HomeSort by relevance Sort by last modified time
    Searched refs:excludedList (Results 1 - 7 of 7) sorted by null

  /cts/tools/host/test/com/android/cts/
TestPlanBuilderTests.java 176 ArrayList<String> excludedList = results.get(appPackageName);
177 if (excludedList != null) {
178 for(String str : excludedList) {
259 ArrayList<String> excludedList = null;
262 excludedList = pkg.getExcludedList(CtsTestResult.STR_NOT_EXECUTED);
263 assertNotNull(excludedList);
264 assertEquals(0, excludedList.size());
267 excludedList = pkg.getExcludedList(CtsTestResult.STR_TIMEOUT);
268 assertNull(excludedList);
271 excludedList = pkg.getExcludedList(null)
    [all...]
TestSessionBuilderTests.java 434 final String excludedList = "com.google.TestSuiteName";
442 + "\" " + "exclude=\"" + excludedList + "\"/>\n"
521 final String excludedList = "com.google.TestSuiteName";
557 list.add(excludedList);
603 final String excludedList = "com.google";
639 list.add(excludedList);
671 final String excludedList = "com.google.TestCaseName";
    [all...]
  /cts/tools/host/src/com/android/cts/
TestCase.java 108 ArrayList<String> excludedList = new ArrayList<String>();
114 excludedList.add(test.getFullName());
119 excludedList.add(test.getFullName());
124 if (excludedList.size() == getTests().size()) {
126 excludedList.removeAll(excludedList);
127 excludedList.add(getFullName());
129 return excludedList;
TestSuite.java 170 ArrayList<String> excludedList = new ArrayList<String>();
176 excludedList.addAll(list);
184 excludedList.addAll(list);
190 if (excludedList.contains(fullName)) {
196 excludedList.removeAll(excludedList);
197 excludedList.add(getFullName());
199 return excludedList;
TestSessionBuilder.java 158 ArrayList<String> excludedList = null;
160 excludedList = getStrArrayList(list);
168 TestPackage pkg = loadPackage(xmlFile, excludedList);
193 * @param excludedList The list containing the excluded suites and sub types.
196 public TestPackage loadPackage(final File packageConfigFile, ArrayList<String> excludedList)
199 return loadPackage(pNode, excludedList);
206 * @param excludedList The list containing the excluded suites and sub types.
209 public TestPackage loadPackage(final Node pkgNode, ArrayList<String> excludedList)
253 if (checkFullMatch(excludedList, fullSuiteName) == false) {
255 getExcludedList(excludedList, fullSuiteName)
    [all...]
TestPackage.java 452 ArrayList<String> excludedList = new ArrayList<String>();
458 excludedList.addAll(list);
464 if (excludedList.contains(fullName)) {
473 return excludedList;
    [all...]
ConsoleUi.java     [all...]

Completed in 860 milliseconds