diff options
Diffstat (limited to 'tests/fuzz/vector-iterator/pds.go')
-rw-r--r-- | tests/fuzz/vector-iterator/pds.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/fuzz/vector-iterator/pds.go b/tests/fuzz/vector-iterator/pds.go new file mode 100644 index 0000000..501b9aa --- /dev/null +++ b/tests/fuzz/vector-iterator/pds.go @@ -0,0 +1,30 @@ +package pds + +import ( + "os" + "testing" + "testing/internal/testdeps" +) + + + +func fn(f *testing.F) { + f.Fuzz(func(t *testing.T, s string) { + // Heredoc(s) + }) +} + + + +func MainTest() { + fuzzTargets := []testing.InternalFuzzTarget{ + { "heredoc", fn }, + } + + deps := testdeps.TestDeps{} + tests := []testing.InternalTest {} + benchmarks := []testing.InternalBenchmark{} + examples := []testing.InternalExample {} + m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples) + os.Exit(m.Run()) +} |