(t *testing.T)
| 2222 | } |
| 2223 | |
| 2224 | func TestJSONEq_HashesNotEquivalent(t *testing.T) { |
| 2225 | mockT := new(testing.T) |
| 2226 | False(t, JSONEq(mockT, `{"foo": "bar"}`, `{"foo": "bar", "hello": "world"}`)) |
| 2227 | } |
| 2228 | |
| 2229 | func TestJSONEq_ActualIsNotJSON(t *testing.T) { |
| 2230 | mockT := new(testing.T) |