NotEqualf fails a test if the actual matches the expected
(t *testing.T, a, b interface{}, message string)
| 86 | |
| 87 | // NotEqualf fails a test if the actual matches the expected |
| 88 | func NotEqualf(t *testing.T, a, b interface{}, message string) { |
| 89 | ok, m := checkEqual(a, b, message) |
| 90 | if ok { |
| 91 | t.Fatal(m) |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | // DeepEqual fails a test if the actual does not deeply equal the expected |
| 96 | func DeepEqual(t *testing.T, a, b interface{}, message string) { |
nothing calls this directly
no test coverage detected