...

Source file src/github.com/distribution/reference/fuzz_test.go

Documentation: github.com/distribution/reference

     1  package reference
     2  
     3  import (
     4  	"testing"
     5  )
     6  
     7  // fuzzParseNormalizedNamed implements a fuzzer
     8  // that targets ParseNormalizedNamed
     9  // nolint:deadcode
    10  func FuzzParseNormalizedNamed(f *testing.F) {
    11  	f.Fuzz(func(t *testing.T, data string) {
    12  		_, _ = ParseNormalizedNamed(data)
    13  	})
    14  }
    15  

View as plain text