Home
last modified time | relevance | path

Searched refs:TEST_CASE_NAMES (Results 1 – 3 of 3) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java62 public static final String TEST_CASE_NAMES = "testCaseNames"; field in TestAcknowledgmentEntity
168 ackEntity.setUnindexedProperty(TEST_CASE_NAMES, new ArrayList<>(this.testCaseNames)); in toEntity()
204 if (e.hasProperty(TEST_CASE_NAMES)) in fromEntity()
205 testCaseNames = (List<String>) e.getProperty(TEST_CASE_NAMES); in fromEntity()
243 if (json.has(TEST_CASE_NAMES)) { in fromJson()
244 testCaseNames = new Gson().fromJson(json.get(TEST_CASE_NAMES), listType); in fromJson()
297 json.add(TEST_CASE_NAMES, new Gson().toJsonTree(testCaseNames)); in toJson()
DTestCaseRunEntity.java44 public static final String TEST_CASE_NAMES = "testCaseNames"; field in TestCaseRunEntity
185 testCaseRunEntity.setUnindexedProperty(TEST_CASE_NAMES, testCaseNames); in toEntity()
209 if (e.hasProperty(TEST_CASE_NAMES) && e.hasProperty(RESULTS)) { in fromEntity()
210 List<String> testCaseNames = (List<String>) e.getProperty(TEST_CASE_NAMES); in fromEntity()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java79 ((List<String>) e.getProperty(TestAcknowledgmentEntity.TEST_CASE_NAMES)) in testEntitySerialization()
107 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.TEST_CASE_NAMES)); in testEntitySerializationWithNulls()