Searched refs:testPlanRun (Results 1 – 4 of 4) sorted by relevance
27 '/show_plan_run?plan=' + entry.testPlanRun.testPlanName +28 '&time=' + entry.testPlanRun.startTimestamp);32 var startTime = entry.testPlanRun.startTimestamp;33 var endTime = entry.testPlanRun.endTimestamp;41 span.append(entry.testPlanRun.testBuildId).append('<br>');48 var color = entry.testPlanRun.failCount > 0 ? 'red' : 'green';51 entry.testPlanRun.passCount + '/' +52 (entry.testPlanRun.passCount + entry.testPlanRun.failCount));
105 TestPlanRunEntity testPlanRun = TestPlanRunEntity.fromEntity(testPlanRunEntity); in doGetHandler() local106 Map<Key, Entity> testRuns = datastore.get(testPlanRun.getOldTestRuns()); in doGetHandler()107 testBuildId = testPlanRun.getTestBuildId(); in doGetHandler()108 passCount = (int) testPlanRun.getPassCount(); in doGetHandler()109 failCount = (int) testPlanRun.getFailCount(); in doGetHandler()110 totalApiCount = testPlanRun.getTotalApiCount(); in doGetHandler()112 totalCoveredApiCount = testPlanRun.getCoveredApiCount(); in doGetHandler()114 startTime = testPlanRun.getStartTimestamp(); in doGetHandler()115 endTime = testPlanRun.getEndTimestamp(); in doGetHandler()116 moduleCount = testPlanRun.getTestRuns().size(); in doGetHandler()[all …]
94 public final TestPlanRunEntity testPlanRun; field in ShowPlanReleaseServlet.TestPlanRunMetadata98 public TestPlanRunMetadata(TestPlanRunEntity testPlanRun) { in TestPlanRunMetadata() argument99 this.testPlanRun = testPlanRun; in TestPlanRunMetadata()118 obj.add("testPlanRun", testPlanRun.toJson()); in toJson()125 return new Long(o.testPlanRun.getStartTimestamp()) in compareTo()126 .compareTo(this.testPlanRun.getStartTimestamp()); in compareTo()224 TestPlanRunEntity testPlanRun = TestPlanRunEntity.fromEntity(entityMap.get(key)); in getTestPlanDispatcher() local225 if (testPlanRun == null) { in getTestPlanDispatcher()228 TestPlanRunMetadata metadata = new TestPlanRunMetadata(testPlanRun); in getTestPlanDispatcher()272 endTime = firstRun.testPlanRun.getStartTimestamp(); in getTestPlanDispatcher()[all …]
623 TestPlanRunEntity testPlanRun = in doPost()640 device.copyWithParent(testPlanRun.getOfyKey()).toEntity()); in doPost()642 datastore.put(testPlanRun.toEntity()); in doPost()664 + testPlanRun.key); in doPost()