15 lines
276 B
Go
15 lines
276 B
Go
|
package reference
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
// fuzzParseNormalizedNamed implements a fuzzer
|
||
|
// that targets ParseNormalizedNamed
|
||
|
// nolint:deadcode
|
||
|
func FuzzParseNormalizedNamed(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data string) {
|
||
|
_, _ = ParseNormalizedNamed(data)
|
||
|
})
|
||
|
}
|