(t *testing.T)
| 441 | } |
| 442 | |
| 443 | func TestFuzzSlice(t *testing.T) { |
| 444 | testTypeFuzz(t, &Tslice{X: []int{}}, &Xslice{X: []int{}}) |
| 445 | } |
| 446 | |
| 447 | func TestFuzzSlicePtr(t *testing.T) { |
| 448 | testTypeFuzz(t, &TslicePtr{X: []*int{}}, &XslicePtr{X: []*int{}}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…