9337b8df66
Signed-off-by: AdamKorcz <adam@adalogics.com>
14 lines
276 B
Go
14 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)
|
|
})
|
|
}
|