Searched refs:TestStatusEntity (Results 1 – 6 of 6) sorted by relevance
39 public class TestStatusEntity implements DashboardEntity { class40 protected static final Logger logger = Logger.getLogger(TestStatusEntity.class.getName());107 public TestStatusEntity( in TestStatusEntity() method in TestStatusEntity125 public TestStatusEntity(String testName) { in TestStatusEntity() method in TestStatusEntity131 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()
20 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()
24 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 …]
21 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()
38 import com.android.vts.entity.TestStatusEntity;109 ObjectifyService.register(TestStatusEntity.class); in contextInitialized()
30 import com.android.vts.entity.TestStatusEntity;31 import com.android.vts.entity.TestStatusEntity.TestCaseReference;419 TestStatusEntity testStatusEntity = in doPost()420 new TestStatusEntity( in doPost()