Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java63 public static final String NOTE = "note"; field in TestAcknowledgmentEntity
170 if (this.note != null) ackEntity.setUnindexedProperty(NOTE, new Text(this.note)); in toEntity()
209 if (e.hasProperty(NOTE)) note = (Text) e.getProperty(NOTE); in fromEntity()
248 if (json.has(NOTE)) { in fromJson()
249 note = new Text(json.get(NOTE).getAsString()); in fromJson()
301 json.add(NOTE, new JsonPrimitive(note)); in toJson()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java81 Assert.assertEquals(note, e.getProperty(TestAcknowledgmentEntity.NOTE)); in testEntitySerialization()
108 Assert.assertFalse(e.hasProperty(TestAcknowledgmentEntity.NOTE)); in testEntitySerializationWithNulls()