:any an object
:any the object input is expected to be equal
string failure message
void. Calls fail() if JSON.stringify(input) != JSON.stringify(expectation)
Tests if the JSON representation of two objects is NOT equal (we don't need the exact reference but only an equal)
:any an object
:any the object input is expected NOT to be equal
void. Calls fail() if JSON.stringify(input) == JSON.stringify(expectation)
Tests if the JSON representation of two objects is equal (we don't need the exact reference but only an equal)
sholzer 160511 (I wanted an Junit equivalent of assertEquals())