aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/cli-check/fiinha.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-12-05 19:57:18 -0300
committerEuAndreh <eu@euandre.org>2025-12-05 19:57:18 -0300
commit30a25019a627e23ae6696455a280985f4844d9a8 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /tests/fuzz/cli-check/fiinha.go
parentUpdate to latest project skeleton: i18n and fine-grained fuzzing (diff)
downloadfiinha-30a25019a627e23ae6696455a280985f4844d9a8.tar.gz
fiinha-30a25019a627e23ae6696455a280985f4844d9a8.tar.xz
rm -rf *: setup change to Clojure
Diffstat (limited to 'tests/fuzz/cli-check/fiinha.go')
-rw-r--r--tests/fuzz/cli-check/fiinha.go35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/fuzz/cli-check/fiinha.go b/tests/fuzz/cli-check/fiinha.go
deleted file mode 100644
index 1cb6f37..0000000
--- a/tests/fuzz/cli-check/fiinha.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package fiinha
-
-import (
- "os"
- "testing"
- "testing/internal/testdeps"
-)
-
-
-
-func queries(f *testing.F) {
- f.Fuzz(func(t *testing.T, n int) {
- if n > 154 {
- if n < 155 {
- t.Errorf("Failed n: %v\n", n)
- }
- }
- })
-}
-
-
-
-func MainTest() {
- // FIXME
- fuzzTargets := []testing.InternalFuzzTarget{
- { "queries", queries },
- }
-
- deps := testdeps.TestDeps{}
- tests := []testing.InternalTest {}
- benchmarks := []testing.InternalBenchmark{}
- examples := []testing.InternalExample {}
- m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
- os.Exit(m.Run())
-}