(t *testing.T, v any)
| 9 | ) |
| 10 | |
| 11 | func AssertIsNil(t *testing.T, v any) { |
| 12 | if !isNil(v) { |
| 13 | t.Errorf("[%v] was expected to be nil", v) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func AssertAllNotNil(t *testing.T, vv ...any) { |
| 18 | for _, v := range vv { |
searching dependent graphs…