(t *testing.T)
| 437 | } |
| 438 | |
| 439 | func TestFuzzArrayPtr(t *testing.T) { |
| 440 | testTypeFuzz(t, &TarrayPtr{X: [3]*int{}}, &XarrayPtr{X: [3]*int{}}) |
| 441 | } |
| 442 | |
| 443 | func TestFuzzSlice(t *testing.T) { |
| 444 | testTypeFuzz(t, &Tslice{X: []int{}}, &Xslice{X: []int{}}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…