package golite import ( "os" "testing" "testing/internal/testdeps" ) func FuzzAPI(f *testing.F) { f.Add(123) f.Fuzz(func(t *testing.T, n int) { // FIXME if n == 1234 { t.Errorf("Failed n: %q\n", n) } }) } func MainTest() { fuzzTargets := []testing.InternalFuzzTarget{ { "FuzzAPI", FuzzAPI }, } deps := testdeps.TestDeps{} tests := []testing.InternalTest {} benchmarks := []testing.InternalBenchmark{} examples := []testing.InternalExample {} m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples) os.Exit(m.Run()) }