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.
1 parent 486b90b commit 4d44eceCopy full SHA for 4d44ece
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