(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestEqualValuesWrapper(t *testing.T) { |
| 60 | t.Parallel() |
| 61 | |
| 62 | assert := New(new(testing.T)) |
| 63 | |
| 64 | if !assert.EqualValues(uint32(10), int32(10)) { |
| 65 | t.Error("EqualValues should return true") |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | func TestNotNilWrapper(t *testing.T) { |
| 70 | t.Parallel() |
nothing calls this directly
no test coverage detected