(f *testing.F)
| 15 | ) |
| 16 | |
| 17 | func FuzzCSUPRoundtripGen(f *testing.F) { |
| 18 | f.Fuzz(func(t *testing.T, b []byte) { |
| 19 | bytesReader := bytes.NewReader(b) |
| 20 | context := super.NewContext() |
| 21 | types := fuzz.GenTypes(bytesReader, context, 3) |
| 22 | values := fuzz.GenValues(bytesReader, context, types) |
| 23 | roundtrip(t, values) |
| 24 | }) |
| 25 | } |
| 26 | |
| 27 | func FuzzCSUPRoundtripBytes(f *testing.F) { |
| 28 | f.Fuzz(func(t *testing.T, b []byte) { |
nothing calls this directly
no test coverage detected