Home
last modified time | relevance | path

Searched refs:TestEntity (Results 1 – 25 of 33) sorted by relevance

12

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestEntity.java41 public class TestEntity implements DashboardEntity { class
42 protected static final Logger logger = Logger.getLogger(TestEntity.class.getName());
63 public TestEntity(String testName, boolean hasProfilingData) { in TestEntity() method in TestEntity
73 public TestEntity(String testName) { in TestEntity() method in TestEntity
79 public com.googlecode.objectify.Key<TestEntity> save() { in save()
96 com.googlecode.objectify.Key.create(TestEntity.class, this.getTestName()); in getTestRunKey()
110 List<TestEntity> testEntityList = getAllTest(); in getAllTestNames()
117 public static List<TestEntity> getAllTest() { in getAllTest()
118 return ofy().load().type(TestEntity.class).list(); in getAllTest()
123 if (obj == null || !TestEntity.class.isAssignableFrom(obj.getClass())) { in equals()
[all …]
DCodeCoverageEntity.java102 Key testParentKey = Key.create(TestEntity.class, testRunKey.getParent().getName()); in getParentKey()
122 KeyFactory.createKey(TestEntity.KIND, this.getParent().getParent().getName()); in toEntity()
DTestRunEntity.java214 this.testRunParent = com.googlecode.objectify.Key.create(TestEntity.class, testName); in TestRunEntity()
257 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in getKey()
279 com.googlecode.objectify.Key.create(TestEntity.class, testName); in getByTestNameId()
294 TestEntity.class, this.testName); in getOfyKey()
DTestCoverageStatusEntity.java126 TestEntity.class, in getDeviceInfoEntityKeyList()
183 com.googlecode.objectify.Key.create(TestEntity.class, this.testName); in getTestRunEntity()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowProfilingListServlet.java21 import com.android.vts.entity.TestEntity;
59 List<String> tests = ofy().load().type(TestEntity.class) in doGetHandler()
60 .filter(TestEntity.HAS_PROFILING_DATA, true).list().stream() in doGetHandler()
61 .sorted(Comparator.comparing(TestEntity::getTestName)).map(t -> t.getTestName()) in doGetHandler()
DShowTestAcknowledgmentServlet.java20 import com.android.vts.entity.TestEntity;
65 List<String> allTestNames = TestEntity.getAllTestNames(); in doGetHandler()
DDashboardMainServlet.java19 import com.android.vts.entity.TestEntity;
183 List<String> allTestNames = TestEntity.getAllTestNames(); in doGetHandler()
206 Key testKey = KeyFactory.createKey(TestEntity.KIND, statusEntity.getTestName()); in doGetHandler()
DShowCoverageOverviewServlet.java22 import com.android.vts.entity.TestEntity;
158 TestEntity.class, in getTestRunEntityKeyList()
245 TestEntity.class, in getCoverageDispatcher()
363 PathElement.of(TestEntity.KIND, testName), in getCoverageDataTable()
372 PathElement.of(TestEntity.KIND, testName), in getCoverageDataTable()
DShowCoverageServlet.java23 import com.android.vts.entity.TestEntity;
99 .create(TestEntity.class, test); in doGetHandler()
DShowTableServlet.java21 import com.android.vts.entity.TestEntity;
152 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler()
/test/vti/dashboard/src/test/java/com/android/vts/api/
DDataRestServletTest.java22 import com.android.vts.entity.TestEntity;
59 factory().register(TestEntity.class); in setUpExtra()
75 Key testParentKey = Key.create(TestEntity.class, "test1"); in setUpExtra()
DCoverageRestServletTest.java24 import com.android.vts.entity.TestEntity;
75 Key testParentKey = Key.create(TestEntity.class, "test1"); in testApiData()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DCodeCoverageEntityTest.java34 Key testParentKey = Key.create(TestEntity.class, "test1"); in saveTest()
48 Key testParentKey = Key.create(TestEntity.class, "test1"); in getUrlSafeKeyTest()
DTestAcknowledgmentEntityTest.java56 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerialization()
96 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerializationWithNulls()
123 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerialization()
151 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerializationWithNulls()
DCodeCoverageFileEntityTest.java37 Key testParentKey = Key.create(TestEntity.class, "test1"); in saveTest()
DApiCoverageExcludedEntityTest.java52 Key testParentKey = Key.create(TestEntity.class, "test1"); in getUrlSafeKeyTest()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java26 import com.android.vts.entity.TestEntity;
399 TestEntity testEntity = new TestEntity(testRun.testName); in doPost()
536 TestEntity oldTestEntity = in doPost()
537 TestEntity.fromEntity(oldTest); in doPost()
576 Key parentKey = KeyFactory.createKey(TestEntity.KIND, test); in doPost()
DTestRunRestServlet.java20 import com.android.vts.entity.TestEntity;
72 TestEntity.class, testName); in getLatestTestRunDetails()
DDatastoreRestServlet.java29 import com.android.vts.entity.TestEntity;
147 List<TestEntity> testEntityList = new ArrayList<>(); in insertTestReport()
187 TestEntity testEntity = new TestEntity(testName); in insertTestReport()
443 com.googlecode.objectify.Key.create(TestEntity.class, test); in insertTestPlanReport()
DUserFavoriteRestServlet.java19 import com.android.vts.entity.TestEntity;
66 Key addedTestKey = KeyFactory.createKey(TestEntity.KIND, test); in addFavorite()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DDatastoreHelper.java25 import com.android.vts.entity.TestEntity;
203 TestEntity datastoreTestEntity = TestEntity.fromEntity(datastoreEntity); in datastoreTransactionalRetryWithXG()
DTestResults.java24 import com.android.vts.entity.TestEntity;
169 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processProfilingPoints()
190 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processDeviceInfos()
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java28 import com.android.vts.entity.TestEntity;
94 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in createProfilingRun()
218 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testNewSummary()
299 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testUpdateSummary()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsInactivityJobServlet.java19 import com.android.vts.entity.TestEntity;
162 Key testKey = KeyFactory.createKey(TestEntity.KIND, status.getTestName()); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/config/
DObjectifyListener.java34 import com.android.vts.entity.TestEntity;
104 ObjectifyService.register(TestEntity.class); in contextInitialized()

12