Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java60 public static final String BRANCHES = "branches"; field in TestAcknowledgmentEntity
162 ackEntity.setUnindexedProperty(BRANCHES, new ArrayList<>(this.branches)); in toEntity()
196 if (e.hasProperty(BRANCHES)) branches = (List<String>) e.getProperty(BRANCHES); in fromEntity()
233 if (json.has(BRANCHES)) { in fromJson()
234 branches = new Gson().fromJson(json.get(BRANCHES), listType); in fromJson()
281 json.add(BRANCHES, new Gson().toJsonTree(branches)); in toJson()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java73 ((List<String>) e.getProperty(TestAcknowledgmentEntity.BRANCHES)) in testEntitySerialization()
105 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.BRANCHES)); in testEntitySerializationWithNulls()