(f *testing.F)
| 46 | } |
| 47 | |
| 48 | func FuzzExistenceInit(f *testing.F) { |
| 49 | f.Add("hello") |
| 50 | f.Fuzz(func(_ *testing.T, s string) { |
| 51 | _, _ = makeExistence([]string{s}) |
| 52 | }) |
| 53 | } |
| 54 | |
| 55 | func FuzzExistence(f *testing.F) { |
| 56 | rule, err := makeExistence([]string{"test"}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…