Home
last modified time | relevance | path

Searched refs:testCaseName (Results 1 – 7 of 7) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DComparisonReport.java82 String testCaseName = in writeComparisonReport() local
89 if (!isKnownFailure(testCaseName, knownFailures)) { in writeComparisonReport()
91 testCaseMap.put(testCaseName, testApkType); in writeComparisonReport()
92 extraTestCaseMap.put(testCaseName, testApkType); in writeComparisonReport()
93 System.out.printf("add: %s: %s\n", testCaseName, testApkType); in writeComparisonReport()
95 System.out.printf("KF: %s\n", testCaseName); in writeComparisonReport()
115 String testCaseName = in writeComparisonReport() local
124 testCaseName, extraTestCaseMap.remove(testCaseName)); in writeComparisonReport()
125 if (!testCaseMap.containsKey(testCaseName)) { in writeComparisonReport()
128 i++, module.getName(), testCaseName, tPkg.getAbi()); in writeComparisonReport()
DTestCaseReport.java494 String testCaseName = in printTestSuite() local
501 if (!isKnownFailure(testCaseName, knownFailures)) { in printTestSuite()
531 String testCaseName = in printTestSuiteSummary() local
538 if (!isKnownFailure(testCaseName, knownFailures)) { in printTestSuiteSummary()
/cts/tests/tests/assist/common/src/android/assist/common/
DUtils.java228 public static void setTestAppAction(Intent intent, String testCaseName) { in setTestAppAction() argument
229 intent.putExtra(Utils.TESTCASE_TYPE, testCaseName); in setTestAppAction()
230 intent.setAction("android.intent.action.TEST_APP_" + testCaseName); in setTestAppAction()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/performance/
DCameraPerformanceActivity.java254 for (String testCaseName : testCaseNames) { in setupTests()
255 adapter.add(new TestListItem(this, testCaseName, testCaseName)); in setupTests()
/cts/tests/tests/assist/src/android/assist/cts/
DAssistTestBase.java229 protected void start3pApp(String testCaseName) throws Exception { in start3pApp() argument
230 start3pApp(testCaseName, null); in start3pApp()
233 protected void start3pApp(String testCaseName, Bundle extras) throws Exception { in start3pApp() argument
235 intent.putExtra(Utils.TESTCASE_TYPE, testCaseName); in start3pApp()
236 Utils.setTestAppAction(intent, testCaseName); in start3pApp()
/cts/common/device-side/nativetesthelper/jni/
Dgtest_wrapper.cpp92 jobject createTestDescription(JNIEnv* env, jstring className, const char* testCaseName, const char*… in createTestDescription() argument
94 nativeNameStream << testCaseName << "." << testName; in createTestDescription()
/cts/tests/tests/assist/service/src/android/assist/service/
DMainInteractionService.java118 String testCaseName = intent.getStringExtra(Utils.TESTCASE_TYPE); in onReceive() local