(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestEqualValuesWrapper(t *testing.T) { |
| 54 | assert := New(new(testing.T)) |
| 55 | |
| 56 | if !assert.EqualValues(uint32(10), int32(10)) { |
| 57 | t.Error("EqualValues should return true") |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | func TestNotNilWrapper(t *testing.T) { |
| 62 | assert := New(new(testing.T)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…