(t *testing.T)
| 2232 | } |
| 2233 | |
| 2234 | func TestJSONEq_ExpectedIsNotJSON(t *testing.T) { |
| 2235 | mockT := new(testing.T) |
| 2236 | False(t, JSONEq(mockT, "Not JSON", `{"foo": "bar", "hello": "world"}`)) |
| 2237 | } |
| 2238 | |
| 2239 | func TestJSONEq_ExpectedAndActualNotJSON(t *testing.T) { |
| 2240 | mockT := new(testing.T) |