Home
last modified time | relevance | path

Searched refs:DEVICES (Results 1 – 2 of 2) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java61 public static final String DEVICES = "devices"; field in TestAcknowledgmentEntity
165 ackEntity.setUnindexedProperty(DEVICES, new ArrayList<>(this.devices)); in toEntity()
200 if (e.hasProperty(DEVICES)) devices = (List<String>) e.getProperty(DEVICES); in fromEntity()
238 if (json.has(DEVICES)) { in fromJson()
239 devices = new Gson().fromJson(json.get(DEVICES), listType); in fromJson()
289 json.add(DEVICES, new Gson().toJsonTree(devices)); in toJson()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java76 ((List<String>) e.getProperty(TestAcknowledgmentEntity.DEVICES)) in testEntitySerialization()
106 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.DEVICES)); in testEntitySerializationWithNulls()