Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestPlanRunEntity.java190 Entity planRun = new Entity(this.key); in toEntity() local
191 planRun.setProperty(TEST_PLAN_NAME, this.testPlanName); in toEntity()
192 planRun.setProperty(TYPE, this.type); in toEntity()
193 planRun.setProperty(START_TIMESTAMP, this.startTimestamp); in toEntity()
194 planRun.setProperty(END_TIMESTAMP, this.endTimestamp); in toEntity()
195 planRun.setProperty(TEST_BUILD_ID, this.testBuildId.toLowerCase()); in toEntity()
196 planRun.setProperty(PASS_COUNT, this.passCount); in toEntity()
197 planRun.setProperty(FAIL_COUNT, this.failCount); in toEntity()
199 planRun.setUnindexedProperty(TEST_RUNS, this.oldTestRuns); in toEntity()
201 return planRun; in toEntity()