Home
last modified time | relevance | path

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

/libcore/json/src/test/java/org/json/
DParsingTest.java38 assertParsed(Boolean.TRUE, "true"); in testParsingLiterals()
39 assertParsed(Boolean.FALSE, "false"); in testParsingLiterals()
40 assertParsed(JSONObject.NULL, "null"); in testParsingLiterals()
41 assertParsed(JSONObject.NULL, "NULL"); in testParsingLiterals()
42 assertParsed(Boolean.FALSE, "False"); in testParsingLiterals()
43 assertParsed(Boolean.TRUE, "truE"); in testParsingLiterals()
47 assertParsed("abc", "\"abc\""); in testParsingQuotedStrings()
48 assertParsed("123", "\"123\""); in testParsingQuotedStrings()
49 assertParsed("foo\nbar", "\"foo\\nbar\""); in testParsingQuotedStrings()
50 assertParsed("foo bar", "\"foo\\u0020bar\""); in testParsingQuotedStrings()
[all …]