Home
last modified time | relevance | path

Searched refs:testCase (Results 1 – 10 of 10) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestRunDetails.java44 public void add(String testCase) { in add() argument
45 this.testCases.add(testCase); in add()
76 for (TestCase testCase : testCaseEntity.getTestCases()) { in addTestCase()
77 int result = testCase.result; in addTestCase()
82 column.add(testCase.name); in addTestCase()
DTestResults.java129 for (TestCase testCase : testCaseRunEntity.testCases) { in addTestRun()
130 if (!testCaseNameMap.containsKey(testCase.name)) { in addTestRun()
131 testCaseNameMap.put(testCase.name, testCaseNameMap.size()); in addTestRun()
151 for (TestCase testCase : testCaseRunEntity.testCases) { in generateToTBreakdown()
152 totResultCounts[testCase.result]++; in generateToTBreakdown()
304 for (TestCase testCase : testCaseEntity.testCases) { in processReport()
305 int result = testCase.result; in processReport()
306 String name = testCase.name; in processReport()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestStatusEntity.java93 public TestCaseReference(TestCase testCase) { in TestCaseReference() argument
94 this(testCase.parentId, testCase.offset); in TestCaseReference()
144 for (TestCaseReference testCase : this.failingTestCases) { in toEntity()
145 failingTestcaseIds.add(testCase.parentId); in toEntity()
146 failingTestcaseOffsets.add(testCase.offset); in toEntity()
DTestCaseRunEntity.java181 for (TestCase testCase : this.testCases) { in toEntity()
182 testCaseNames.add(testCase.name); in toEntity()
183 results.add(testCase.result); in toEntity()
/test/suite_harness/common/host-side/util/tests/src/com/android/compatibility/common/util/
DModuleResultTest.java70 ICaseResult testCase = mResult.getOrCreateResult(CLASS); in testCountResults() local
71 testCase.getOrCreateResult(METHOD_1).failed(STACK_TRACE); in testCountResults()
72 testCase.getOrCreateResult(METHOD_2).failed(STACK_TRACE); in testCountResults()
73 testCase.getOrCreateResult(METHOD_3).passed(null); in testCountResults()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java103 TestCase testCase = testCaseRunEntity.testCases.get(testCaseRef.offset); in getCurrentFailures() local
104 failingTestcases.put(testCase.name, testCase); in getCurrentFailures()
205 for (String testCase : ack.getTestCaseNames()) { in separateAcknowledged()
206 if (testCases.contains(testCase)) { in separateAcknowledged()
207 acknowledged.add(testCase); in separateAcknowledged()
208 testCases.remove(testCase); in separateAcknowledged()
271 for (TestCase testCase : testCaseRunEntity.testCases) { in getTestStatus()
272 String testCaseName = testCase.name; in getTestStatus()
273 TestCaseResult result = TestCaseResult.valueOf(testCase.result); in getTestStatus()
297 testCaseBreakageMap.put(testCaseName, testCase); in getTestStatus()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java197 for (VtsReportMessage.TestCaseReportMessage testCase : report.getTestCaseList()) { in insertTestReport()
198 String testCaseName = testCase.getName().toStringUtf8(); in insertTestReport()
199 VtsReportMessage.TestCaseResult result = testCase.getTestResult(); in insertTestReport()
206 if (testCase.getSystraceCount() > 0 in insertTestReport()
207 && testCase.getSystraceList().get(0).getUrlCount() > 0) { in insertTestReport()
208 String systraceLink = testCase.getSystraceList().get(0).getUrl(0).toStringUtf8(); in insertTestReport()
213 for (VtsReportMessage.CoverageReportMessage coverage : testCase.getCoverageList()) { in insertTestReport()
226 for (VtsReportMessage.ProfilingReportMessage profiling : testCase.getProfilingList()) { in insertTestReport()
/test/vti/dashboard/src/main/webapp/js/
Dcommon.js106 column.data.forEach(function(testCase) { argument
108 .text(testCase)
Dtest_results.js134 column.data.forEach(function(testCase) { argument
136 .text(testCase)
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DResultHandler.java253 ICaseResult testCase = module.getOrCreateResult(caseName); in getResultFromDir() local
257 ITestResult test = testCase.getOrCreateResult(testName); in getResultFromDir()