Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestAcknowledgmentEntity.java225 public static TestAcknowledgmentEntity fromJson(User user, JsonObject json) { in fromJson() method in TestAcknowledgmentEntity
234 branches = new Gson().fromJson(json.get(BRANCHES), listType); in fromJson()
239 devices = new Gson().fromJson(json.get(DEVICES), listType); in fromJson()
244 testCaseNames = new Gson().fromJson(json.get(TEST_CASE_NAMES), listType); in fromJson()
/test/vti/dashboard/src/test/java/com/android/vts/api/
DDataRestServletTest.java116 LinkedList resultList = gson.fromJson(result, LinkedList.class); in testBranchData()
137 LinkedList resultList = gson.fromJson(result, LinkedList.class); in testDeviceData()
DCoverageRestServletTest.java103 LinkedTreeMap resultMap = gson.fromJson(result, LinkedTreeMap.class); in testApiData()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java138 TestAcknowledgmentEntity deserialized = TestAcknowledgmentEntity.fromJson(user, json); in testJsonSerialization()
159 TestAcknowledgmentEntity deserialized = TestAcknowledgmentEntity.fromJson(user, json); in testJsonSerializationWithNulls()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestAcknowledgmentRestServlet.java97 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromJson(currentUser, json); in doPost()
DTestDataForDevServlet.java393 gson.fromJson(postJsonReader, TestReportDataObject.class); in doPost()
567 gson.fromJson(postJsonReader, TestPlanReportDataObject.class); in doPost()