(t *testing.T)
| 2341 | } |
| 2342 | |
| 2343 | func TestJSONEq_Array(t *testing.T) { |
| 2344 | mockT := new(testing.T) |
| 2345 | True(t, JSONEq(mockT, `["foo", {"hello": "world", "nested": "hash"}]`, `["foo", {"nested": "hash", "hello": "world"}]`)) |
| 2346 | } |
| 2347 | |
| 2348 | func TestJSONEq_HashAndArrayNotEquivalent(t *testing.T) { |
| 2349 | mockT := new(testing.T) |