mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 23:46:56 +00:00
* feat: add fuzzers from cncf-fuzzing Signed-off-by: AdamKorcz <adam@adalogics.com> * linter fixes Signed-off-by: ShutingZhao <shuting@nirmata.com> --------- Signed-off-by: AdamKorcz <adam@adalogics.com> Signed-off-by: ShutingZhao <shuting@nirmata.com> Co-authored-by: ShutingZhao <shuting@nirmata.com>
11 lines
146 B
Go
11 lines
146 B
Go
package anchor
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func FuzzAnchorParseTest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data string) {
|
|
_ = Parse(data)
|
|
})
|
|
}
|