here is one of the suggested ways using json compa...
# announcements
j
here is one of the suggested ways using json compare
Copy code
val jsonParser = JsonParser()

fun assertEqualJson(expected: String?, actual: String?) {
    Assert.assertNotNull(expected, actual)
    Assert.assertEquals(jsonParser.parse(expected), jsonParser.parse(actual))
}