(t *testing.T)
| 433 | } |
| 434 | |
| 435 | func TestFuzzArray(t *testing.T) { |
| 436 | testTypeFuzz(t, &Tarray{X: [3]int{}}, &Xarray{X: [3]int{}}) |
| 437 | } |
| 438 | |
| 439 | func TestFuzzArrayPtr(t *testing.T) { |
| 440 | testTypeFuzz(t, &TarrayPtr{X: [3]*int{}}, &XarrayPtr{X: [3]*int{}}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…