Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestCaseRunEntity.java37 public class TestCaseRunEntity implements DashboardEntity { class
91 public TestCaseRunEntity() { in TestCaseRunEntity() method in TestCaseRunEntity
102 public TestCaseRunEntity(long id) { in TestCaseRunEntity() method in TestCaseRunEntity
166 public com.googlecode.objectify.Key<TestCaseRunEntity> save() { in save()
202 public static TestCaseRunEntity fromEntity(Entity e) { in fromEntity()
208 TestCaseRunEntity testCaseRun = new TestCaseRunEntity(e.getKey().getId()); in fromEntity()
DTestStatusEntity.java19 import com.android.vts.entity.TestCaseRunEntity.TestCase;
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestCaseRunEntityTest.java33 factory().register(TestCaseRunEntity.class); in saveTest()
46 TestCaseRunEntity testCaseRunEntity = new TestCaseRunEntity(); in saveTest()
52 TestCaseRunEntity loadedTestCaseRunEntity = saveClearLoad(testCaseRunEntity); in saveTest()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestRunRestServlet.java19 import com.android.vts.entity.TestCaseRunEntity;
90 List<com.googlecode.objectify.Key<TestCaseRunEntity>> testCaseKeyList = new ArrayList<>(); in getTestRunDetails()
96 com.googlecode.objectify.Key.create(TestCaseRunEntity.class, testCaseId)); in getTestRunDetails()
98 Map<com.googlecode.objectify.Key<TestCaseRunEntity>, TestCaseRunEntity> in getTestRunDetails()
DDatastoreRestServlet.java28 import com.android.vts.entity.TestCaseRunEntity;
155 List<TestCaseRunEntity> testCaseRunEntityList = new ArrayList<>(); in insertTestReport()
195 testCaseRunEntityList.add(new TestCaseRunEntity()); in insertTestReport()
238 TestCaseRunEntity testCaseRunEntity = testCaseRunEntityList.get(testCaseRunEntityIndex); in insertTestReport()
240 testCaseRunEntity = new TestCaseRunEntity(); in insertTestReport()
381 && listEntity.get(0) instanceof TestCaseRunEntity) { in insertTestReport()
384 TestCaseRunEntity>, in insertTestReport()
385 TestCaseRunEntity> in insertTestReport()
DTestDataForDevServlet.java25 import com.android.vts.entity.TestCaseRunEntity;
460 TestCaseRunEntity testCaseEntity = new TestCaseRunEntity(); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java22 import com.android.vts.entity.TestCaseRunEntity;
23 import com.android.vts.entity.TestCaseRunEntity.TestCase;
50 private Map<Key, List<TestCaseRunEntity>>
122 testCaseRunMap.put(testRun.getKey(), new ArrayList<TestCaseRunEntity>()); in addTestRun()
126 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(e); in addTestRun()
143 List<TestCaseRunEntity> testCaseResults = testCaseRunMap.get(mostRecentRun.getKey()); in generateToTBreakdown()
150 for (TestCaseRunEntity testCaseRunEntity : testCaseResults) { in generateToTBreakdown()
301 for (TestCaseRunEntity testCaseEntity : testCaseRunMap.get(testRun.getKey())) { in processReport()
DTestRunDetails.java19 import com.android.vts.entity.TestCaseRunEntity;
20 import com.android.vts.entity.TestCaseRunEntity.TestCase;
75 public void addTestCase(TestCaseRunEntity testCaseEntity) { in addTestCase()
DDatastoreHelper.java24 import com.android.vts.entity.TestCaseRunEntity;
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java21 import com.android.vts.entity.TestCaseRunEntity;
22 import com.android.vts.entity.TestCaseRunEntity.TestCase;
86 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId)); in getCurrentFailures()
94 Key key = KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId); in getCurrentFailures()
99 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getCurrentFailures()
257 testCaseKeys.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in getTestStatus()
266 TestCaseRunEntity testCaseRunEntity = TestCaseRunEntity.fromEntity(testCaseRun); in getTestStatus()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowTreeServlet.java21 import com.android.vts.entity.TestCaseRunEntity;
89 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestDetails()
94 TestCaseRunEntity testCaseRun = TestCaseRunEntity.fromEntity(entityMap.get(key)); in processTestDetails()
DShowTableServlet.java20 import com.android.vts.entity.TestCaseRunEntity;
75 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestRun()
/test/vti/dashboard/src/main/java/com/android/vts/config/
DObjectifyListener.java32 import com.android.vts.entity.TestCaseRunEntity;
108 ObjectifyService.register(TestCaseRunEntity.class); in contextInitialized()