Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/webapp/js/
Dcommon.js60 function getNickname(testCaseResult) { argument
61 return testCaseResult.replace('TEST_CASE_RESULT_', '')
Dtest_results.js62 function getNickname(testCaseResult) { argument
63 return testCaseResult.replace('TEST_CASE_RESULT_', '')
/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java330 TestCaseResult testCaseResult = TestCaseResult.valueOf(result); in processReport() local
331 if (testCaseResult != null) classNames += testCaseResult.toString(); in processReport()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowCoverageOverviewServlet.java204 .map(testCaseResult -> testCaseResult.name()) in getCoverageDispatcher()