diff options
Diffstat (limited to 'tests/fuzz/total-order-check/fiinha.go')
| -rw-r--r-- | tests/fuzz/total-order-check/fiinha.go | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/fuzz/total-order-check/fiinha.go b/tests/fuzz/total-order-check/fiinha.go deleted file mode 100644 index cb5aa61..0000000 --- a/tests/fuzz/total-order-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: a consumer gets the messages in total order - 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()) -} |
