Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DUserFavoriteEntity.java46 public static final String TEST_KEY = "testKey"; field in UserFavoriteEntity
101 favoriteEntity.setProperty(TEST_KEY, this.testKey); in toEntity()
113 if (!e.getKind().equals(KIND) || !e.hasProperty(USER) || !e.hasProperty(TEST_KEY)) { in fromEntity()
120 Key testKey = (Key) e.getProperty(TEST_KEY); in fromEntity()
DTestAcknowledgmentEntity.java56 public static final String TEST_KEY = "testKey"; field in TestAcknowledgmentEntity
154 ackEntity.setProperty(TEST_KEY, this.test); in toEntity()
183 || !e.hasProperty(TEST_KEY) in fromEntity()
191 Key test = (Key) e.getProperty(TEST_KEY); in fromEntity()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java70 Assert.assertEquals(key, e.getProperty(TestAcknowledgmentEntity.TEST_KEY)); in testEntitySerialization()
103 Assert.assertEquals(key, e.getProperty(TestAcknowledgmentEntity.TEST_KEY)); in testEntitySerializationWithNulls()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DEmailHelper.java102 new FilterPredicate(UserFavoriteEntity.TEST_KEY, FilterOperator.EQUAL, testKey); in getSubscriberEmails()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DUserFavoriteRestServlet.java79 UserFavoriteEntity.TEST_KEY, FilterOperator.EQUAL, addedTestKey); in addFavorite()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java121 TestAcknowledgmentEntity.TEST_KEY, Query.FilterOperator.EQUAL, testKey); in getTestCaseAcknowledgments()