We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 486b90b + 4d44ece commit 980869dCopy full SHA for 980869d
pkg/yqutil/fuzz_test.go
@@ -0,0 +1,11 @@
1
+package yqutil
2
+
3
+import (
4
+ "testing"
5
+)
6
7
+func FuzzEvaluateExpression(f *testing.F) {
8
+ f.Fuzz(func(_ *testing.T, expression string, content []byte) {
9
+ _, _ = EvaluateExpression(expression, content)
10
+ })
11
+}
0 commit comments