mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
12 lines
146 B
Go
12 lines
146 B
Go
|
package anchor
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func FuzzAnchorParseTest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data string) {
|
||
|
_ = Parse(data)
|
||
|
})
|
||
|
}
|