MCPcopy
hub / github.com/google/uuid / FuzzParse

Function FuzzParse

uuid_test.go:576–584  ·  view source on GitHub ↗
(f *testing.F)

Source from the content-addressed store, hash-verified

574}
575
576func FuzzParse(f *testing.F) {
577 for _, tt := range tests {
578 f.Add(tt.in)
579 f.Add(strings.ToUpper(tt.in))
580 }
581 f.Fuzz(func(t *testing.T, in string) {
582 Parse(in)
583 })
584}
585
586func FuzzParseBytes(f *testing.F) {
587 for _, tt := range tests {

Callers

nothing calls this directly

Calls 1

ParseFunction · 0.85

Tested by

no test coverage detected