Searched refs:planRun (Results 1 – 1 of 1) sorted by relevance
190 Entity planRun = new Entity(this.key); in toEntity() local191 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()