File: fuzz_test.go

package info (click to toggle)
golang-github-distribution-reference 0.6.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 336 kB
  • sloc: makefile: 18
file content (14 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
	})
}