(t *testing.T, expected, actual interface{}, msgAndArgs ...interface{})
| 54 | } |
| 55 | |
| 56 | func (a fatal) NotEqual(t *testing.T, expected, actual interface{}, msgAndArgs ...interface{}) { |
| 57 | t.Helper() |
| 58 | if reflect.DeepEqual(expected, actual) { |
| 59 | a.fail(t, "should not be equal: %#v", actual) |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | func isNil(i interface{}) bool { |
| 64 | if i == nil { |