aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/generated-lexer-check/urubu.go
blob: 7ba1c2f3f88005b09e5102508fa1c7657d5e1530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package urubu

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())
}