Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/webapp/js/
Dplan_runs.js27 '/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));
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowPlanRunServlet.java105 TestPlanRunEntity testPlanRun = TestPlanRunEntity.fromEntity(testPlanRunEntity); in doGetHandler() local
106 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 …]
DShowPlanReleaseServlet.java94 public final TestPlanRunEntity testPlanRun; field in ShowPlanReleaseServlet.TestPlanRunMetadata
98 public TestPlanRunMetadata(TestPlanRunEntity testPlanRun) { in TestPlanRunMetadata() argument
99 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() local
225 if (testPlanRun == null) { in getTestPlanDispatcher()
228 TestPlanRunMetadata metadata = new TestPlanRunMetadata(testPlanRun); in getTestPlanDispatcher()
272 endTime = firstRun.testPlanRun.getStartTimestamp(); in getTestPlanDispatcher()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java623 TestPlanRunEntity testPlanRun = in doPost()
640 device.copyWithParent(testPlanRun.getOfyKey()).toEntity()); in doPost()
642 datastore.put(testPlanRun.toEntity()); in doPost()
664 + testPlanRun.key); in doPost()