(t *testing.T)
| 2212 | } |
| 2213 | |
| 2214 | func TestJSONEq_Array(t *testing.T) { |
| 2215 | mockT := new(testing.T) |
| 2216 | True(t, JSONEq(mockT, `["foo", {"hello": "world", "nested": "hash"}]`, `["foo", {"nested": "hash", "hello": "world"}]`)) |
| 2217 | } |
| 2218 | |
| 2219 | func TestJSONEq_HashAndArrayNotEquivalent(t *testing.T) { |
| 2220 | mockT := new(testing.T) |