The following example: ```java JSONAssert.assertEquals("null", "null", false); ``` result in this exception: ``` org.json.JSONException: Unparsable JSON string: null ``` but `null` is valid JSON, even at the "root" level according to [THIS](http://stackoverflow.com/a/39124954/66629)