(t *testing.T)
| 2361 | } |
| 2362 | |
| 2363 | func TestJSONEq_ExpectedIsNotJSON(t *testing.T) { |
| 2364 | mockT := new(testing.T) |
| 2365 | False(t, JSONEq(mockT, "Not JSON", `{"foo": "bar", "hello": "world"}`)) |
| 2366 | } |
| 2367 | |
| 2368 | func TestJSONEq_ExpectedAndActualNotJSON(t *testing.T) { |
| 2369 | mockT := new(testing.T) |