Searched refs:testSuite (Results 1 – 8 of 8) sorted by relevance
/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/apps/CtsVerifier/src/com/android/cts/verifier/location/base/ |
D | GnssCtsTestActivity.java | 150 TestSuite testSuite; in runnerForClass() local 154 testSuite = (TestSuite) test; in runnerForClass() 160 testSuite = new TestSuite(testClass); in runnerForClass() 163 new GnssCtsTestSuite(getApplicationContext(), testSuite); in runnerForClass()
|
D | GnssCtsTestSuite.java | 36 public GnssCtsTestSuite(Context context, TestSuite testSuite) { in GnssCtsTestSuite() argument 38 mWrappedTestSuite = testSuite; in GnssCtsTestSuite()
|
/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/tools/release-parser/src/com/android/cts/releaseparser/ |
D | Main.java | 90 TestSuite testSuite = tsParser.getTestSuite(); in main() local 93 testSuite.writeTo(tsOutput); in main()
|
/cts/tests/camera/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()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/performance/ |
D | CameraPerformanceActivity.java | 197 Enumeration<Test> testSuite = suite.tests(); in initializeTestCases() local 198 while (testSuite.hasMoreElements()) { in initializeTestCases() 199 Test s = testSuite.nextElement(); in initializeTestCases()
|