Searched refs:testEntity (Results 1 – 5 of 5) sorted by relevance
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestStatusEntity.java | 136 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()
|
D | TestCoverageStatusEntity.java | 199 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()
|
D | TestEntity.java | 84 …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/ |
D | DatastoreRestServlet.java | 187 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()
|
D | TestDataForDevServlet.java | 399 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()
|