Home
last modified time | relevance | path

Searched refs:testCaseRunEntity (Results 1 – 5 of 5) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestCaseRunEntity.java171 Entity testCaseRunEntity; in toEntity() local
173 testCaseRunEntity = new Entity(KeyFactory.createKey(KIND, id)); in toEntity()
175 testCaseRunEntity = new Entity(KIND); in toEntity()
185 testCaseRunEntity.setUnindexedProperty(TEST_CASE_NAMES, testCaseNames); in toEntity()
186 testCaseRunEntity.setUnindexedProperty(RESULTS, results); in toEntity()
189 testCaseRunEntity.setUnindexedProperty(SYSTRACE_URL, this.systraceUrl); in toEntity()
192 return testCaseRunEntity; in toEntity()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestCaseRunEntityTest.java46 TestCaseRunEntity testCaseRunEntity = new TestCaseRunEntity(); in saveTest() local
50 testCaseRunEntity.addTestCase(testCaseName, result); in saveTest()
52 TestCaseRunEntity loadedTestCaseRunEntity = saveClearLoad(testCaseRunEntity); in saveTest()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java238 TestCaseRunEntity testCaseRunEntity = testCaseRunEntityList.get(testCaseRunEntityIndex); in insertTestReport() local
239 if (!testCaseRunEntity.addTestCase(testCaseName, result.getNumber())) { in insertTestReport()
240 testCaseRunEntity = new TestCaseRunEntity(); in insertTestReport()
241 testCaseRunEntity.addTestCase(testCaseName, result.getNumber()); in insertTestReport()
242 testCaseRunEntityList.add(testCaseRunEntity); in insertTestReport()
397 testCaseRunEntity -> in insertTestReport()
398 testCaseRunEntity.getId()) in insertTestReport()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java126 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(e); in addTestRun() local
127 if (testCaseRunEntity == null) continue; in addTestRun()
128 testCaseRunMap.get(testRun.getKey()).add(testCaseRunEntity); in addTestRun()
129 for (TestCase testCase : testCaseRunEntity.testCases) { in addTestRun()
150 for (TestCaseRunEntity testCaseRunEntity : testCaseResults) { in generateToTBreakdown()
151 for (TestCase testCase : testCaseRunEntity.testCases) { in generateToTBreakdown()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java99 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getCurrentFailures() local
100 if (testCaseRunEntity.testCases.size() <= testCaseRef.offset) { in getCurrentFailures()
103 TestCase testCase = testCaseRunEntity.testCases.get(testCaseRef.offset); in getCurrentFailures()
266 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getTestStatus() local
267 if (testCaseRunEntity == null) { in getTestStatus()
271 for (TestCase testCase : testCaseRunEntity.testCases) { in getTestStatus()