aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/api-check/fiinha.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fuzz/api-check/fiinha.go')
-rw-r--r--tests/fuzz/api-check/fiinha.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/fuzz/api-check/fiinha.go b/tests/fuzz/api-check/fiinha.go
deleted file mode 100644
index 86801de..0000000
--- a/tests/fuzz/api-check/fiinha.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package fiinha
-
-import (
- "os"
- "testing"
- "testing/internal/testdeps"
-)
-
-
-
-func api(f *testing.F) {
- f.Fuzz(func(t *testing.T, n int) {
- // FIXME
- if n > 1 {
- if n < 2 {
- t.Errorf("Failed n: %v\n", n)
- }
- }
- })
-}
-
-
-
-func MainTest() {
- fuzzTargets := []testing.InternalFuzzTarget{
- { "api", api },
- }
-
- deps := testdeps.TestDeps{}
- tests := []testing.InternalTest {}
- benchmarks := []testing.InternalBenchmark{}
- examples := []testing.InternalExample {}
- m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
- os.Exit(m.Run())
-}