(t *testing.T)
| 2196 | } |
| 2197 | |
| 2198 | func TestJSONEq_EqualSONString(t *testing.T) { |
| 2199 | mockT := new(testing.T) |
| 2200 | True(t, JSONEq(mockT, `{"hello": "world", "foo": "bar"}`, `{"hello": "world", "foo": "bar"}`)) |
| 2201 | } |
| 2202 | |
| 2203 | func TestJSONEq_EquivalentButNotEqual(t *testing.T) { |
| 2204 | mockT := new(testing.T) |