Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestStatusEntity.java39 public class TestStatusEntity implements DashboardEntity { class
40 protected static final Logger logger = Logger.getLogger(TestStatusEntity.class.getName());
107 public TestStatusEntity( in TestStatusEntity() method in TestStatusEntity
125 public TestStatusEntity(String testName) { in TestStatusEntity() method in TestStatusEntity
131 public com.googlecode.objectify.Key<TestStatusEntity> save() { in save()
162 public static TestStatusEntity fromEntity(Entity e) { in fromEntity()
196 return new TestStatusEntity(testName, timestamp, passCount, failCount, failingTestCases); in fromEntity()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DDashboardMainServlet.java20 import com.android.vts.entity.TestStatusEntity;
198 new Query(TestStatusEntity.KIND) in doGetHandler()
200 new PropertyProjection(TestStatusEntity.PASS_COUNT, Long.class)) in doGetHandler()
202 new PropertyProjection(TestStatusEntity.FAIL_COUNT, Long.class)); in doGetHandler()
204 TestStatusEntity statusEntity = TestStatusEntity.fromEntity(status); in doGetHandler()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java24 import com.android.vts.entity.TestStatusEntity;
25 import com.android.vts.entity.TestStatusEntity.TestCaseReference;
78 private static Map<String, TestCase> getCurrentFailures(TestStatusEntity status) { in getCurrentFailures()
229 public TestStatusEntity getTestStatus( in getTestStatus()
475 return new TestStatusEntity( in getTestStatus()
512 TestStatusEntity status = null; in doPost()
513 Key statusKey = KeyFactory.createKey(TestStatusEntity.KIND, testName); in doPost()
515 status = TestStatusEntity.fromEntity(datastore.get(statusKey)); in doPost()
520 status = new TestStatusEntity(testName); in doPost()
542 TestStatusEntity newStatus = in doPost()
[all …]
DVtsInactivityJobServlet.java21 import com.android.vts.entity.TestStatusEntity;
69 TestStatusEntity test, in notifyIfInactive()
127 Query q = new Query(TestStatusEntity.KIND).setKeysOnly(); in doGet()
153 TestStatusEntity status = null; in doPost()
155 status = TestStatusEntity.fromEntity(datastore.get(statusKey)); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java30 import com.android.vts.entity.TestStatusEntity;
31 import com.android.vts.entity.TestStatusEntity.TestCaseReference;
419 TestStatusEntity testStatusEntity = in doPost()
420 new TestStatusEntity( in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/config/
DObjectifyListener.java38 import com.android.vts.entity.TestStatusEntity;
109 ObjectifyService.register(TestStatusEntity.class); in contextInitialized()