(t *testing.T, expected, actual interface{})
| 35 | } |
| 36 | |
| 37 | func NotEqual(t *testing.T, expected, actual interface{}) { |
| 38 | if reflect.DeepEqual(expected, actual) { |
| 39 | formattedLog(t, "value should not equal %#v", actual) |
| 40 | t.FailNow() |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func Nil(t *testing.T, object interface{}) { |
| 45 | if !isNil(object) { |
nothing calls this directly
no test coverage detected