(t *testing.T)
| 464 | } |
| 465 | |
| 466 | func TestSlicePtrNils(t *testing.T) { |
| 467 | v1 := 3 |
| 468 | v2 := 4 |
| 469 | testType(t, &TslicePtr{X: []*int{nil, &v1, nil, &v2}}, &XslicePtr{X: []*int{nil, &v1, nil, &v2}}) |
| 470 | } |
| 471 | |
| 472 | func TestMapPtrNils(t *testing.T) { |
| 473 | v1 := 3 |
nothing calls this directly
no test coverage detected
searching dependent graphs…