Searched refs:testSuite (Results 1 – 9 of 9) sorted by relevance
/cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/ |
D | CtsNativeScanner.java | 40 String testSuite = null; in main() local 43 testSuite = getArg(args, ++i, "Missing value for test suite"); in main() 50 if (testSuite == null) { in main() 56 TestScanner scanner = new TestScanner(reader, testSuite); in main()
|
D | TestScanner.java | 45 TestScanner(BufferedReader reader, String testSuite) { in TestScanner() argument 46 mTestSuite = testSuite; in TestScanner()
|
/cts/common/host-side/native-scanner/src/com/android/compatibility/common/scanner/ |
D | NativeScanner.java | 42 static ArrayList<String> getTestNames(BufferedReader reader, String testSuite) in getTestNames() argument 45 testNames.add("suite:" + testSuite); in getTestNames() 77 String testSuite = argMap.get(TEST_SUITE_ARG); in main() local 80 for (String name : getTestNames(reader, testSuite)) { in main()
|
/cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/ |
D | TestSuite.java | 40 public void addTestSuite(TestSuite testSuite) { in addTestSuite() argument 41 mTestSuites.put(testSuite.getName(), testSuite); in addTestSuite() local
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
D | TestSuite.java | 110 TestSuite testSuite = mChildSuiteMap.get(suiteName); in getTestSuite() local 111 if (testSuite == null) { in getTestSuite() 112 testSuite = new TestSuite(suiteName); in getTestSuite() 113 mChildSuiteMap.put(suiteName, testSuite); in getTestSuite() 115 return testSuite; in getTestSuite()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/ |
D | SensorCtsTestActivity.java | 143 TestSuite testSuite; in runnerForClass() local 147 testSuite = (TestSuite) test; in runnerForClass() 153 testSuite = new TestSuite(testClass); in runnerForClass() 156 new SensorCtsTestSuite(getApplicationContext(), testSuite); in runnerForClass()
|
D | SensorCtsTestSuite.java | 36 public SensorCtsTestSuite(Context context, TestSuite testSuite) { in SensorCtsTestSuite() argument 38 mWrappedTestSuite = testSuite; in SensorCtsTestSuite()
|
/cts/tools/utils/ |
D | DescriptionGenerator.java | 369 void appendSuiteToElement(Node elem, TestClass testSuite) { in appendSuiteToElement() argument 370 String suiteName = testSuite.mName; in appendSuiteToElement() 383 appendTestCases(child, testSuite.mCases); in appendSuiteToElement() 385 testSuite.mName = suiteName.substring(dotIndex + 1, suiteName.length()); in appendSuiteToElement() 386 appendSuiteToElement(child, testSuite); in appendSuiteToElement() 393 appendSuiteToElementImpl(elem, testSuite); in appendSuiteToElement() 487 void appendSuiteToElementImpl(Node elem, TestClass testSuite) { in appendSuiteToElementImpl() argument 489 String suiteName = testSuite.mName; in appendSuiteToElementImpl() 505 appendTestCases(leafSuiteElem, testSuite.mCases); in appendSuiteToElementImpl()
|
/cts/tests/tests/hardware/src/android/hardware/cts/ |
D | Camera_SizeTest.java | 114 private static void addTestToSuite(TestSuite testSuite, String testName) { in addTestToSuite() argument 117 testSuite.addTest(test); in addTestToSuite()
|