Home
last modified time | relevance | path

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

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DTestJDKSerialization.java128 final String EXP_JSON = "{\"x\":2,\"y\":3}"; in testObjectWriter() local
130 assertEquals(EXP_JSON, origWriter.writeValueAsString(p)); in testObjectWriter()
136 assertEquals(EXP_JSON, writer2.writeValueAsString(p)); in testObjectWriter()
161 final String EXP_JSON = "{\"x\":2,\"y\":3}"; in testObjectMapper() local
163 assertEquals(EXP_JSON, MAPPER.writeValueAsString(p)); in testObjectMapper()
169 assertEquals(EXP_JSON, mapper2.writeValueAsString(p)); in testObjectMapper()
170 MyPojo p2 = mapper2.readValue(EXP_JSON, MyPojo.class); in testObjectMapper()