Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestStatusEntity.java136 Entity testEntity = new Entity(KIND, this.testName); in toEntity() local
138 testEntity.setProperty(UPDATED_TIMESTAMP, this.updatedTimestamp); in toEntity()
139 testEntity.setProperty(PASS_COUNT, this.passCount); in toEntity()
140 testEntity.setProperty(FAIL_COUNT, this.failCount); in toEntity()
148 testEntity.setUnindexedProperty(FAILING_IDS, failingTestcaseIds); in toEntity()
149 testEntity.setUnindexedProperty(FAILING_OFFSETS, failingTestcaseOffsets); in toEntity()
152 return testEntity; in toEntity()
DTestCoverageStatusEntity.java199 Entity testEntity = new Entity(KIND, this.testName); in toEntity() local
200 testEntity.setProperty(UPDATED_TIMESTAMP, this.updatedTimestamp); in toEntity()
201 testEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount); in toEntity()
202 testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount); in toEntity()
203 return testEntity; in toEntity()
DTestEntity.java84 …com.google.appengine.api.datastore.Entity testEntity = new com.google.appengine.api.datastore.Enti… in toEntity() local
85 testEntity.setProperty(HAS_PROFILING_DATA, this.hasProfilingData); in toEntity()
86 return testEntity; in toEntity()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java187 TestEntity testEntity = new TestEntity(testName); in insertTestReport() local
190 testEntity.getTestRunKey(report.getStartTimestamp()); in insertTestReport()
192 testEntityList.add(testEntity); in insertTestReport()
234 testEntity.setHasProfilingData(true); in insertTestReport()
333 testEntity.setHasProfilingData(true); in insertTestReport()
353 testEntity.getOldKey(), in insertTestReport()
DTestDataForDevServlet.java399 TestEntity testEntity = new TestEntity(testRun.testName); in doPost()
403 testEntity.getOldKey(), in doPost()
508 testEntity.getOldKey(), in doPost()
528 Entity newTestEntity = testEntity.toEntity(); in doPost()
535 datastore.get(testEntity.getOldKey()); in doPost()
539 || !oldTestEntity.equals(testEntity)) { in doPost()