go/src/testing/internal/testdeps/deps.go

var Cover

type TestDeps

var matchPat

var matchRe

func (TestDeps) MatchString(pat, str string) (result bool, err error) {}

func (TestDeps) StartCPUProfile(w io.Writer) error {}

func (TestDeps) StopCPUProfile() {}

func (TestDeps) WriteProfileTo(name string, w io.Writer, debug int) error {}

var ImportPath

func (TestDeps) ImportPath() string {}

type testLog

func (l *testLog) Getenv(key string) {}

func (l *testLog) Open(name string) {}

func (l *testLog) Stat(name string) {}

func (l *testLog) Chdir(name string) {}

// add adds the (op, name) pair to the test log.
func (l *testLog) add(op, name string) {}

var log

func (TestDeps) StartTestLog(w io.Writer) {}

func (TestDeps) StopTestLog() error {}

// SetPanicOnExit0 tells the os package whether to panic on os.Exit(0).
func (TestDeps) SetPanicOnExit0(v bool) {}

func (TestDeps) CoordinateFuzzing(
	timeout time.Duration,
	limit int64,
	minimizeTimeout time.Duration,
	minimizeLimit int64,
	parallel int,
	seed []fuzz.CorpusEntry,
	types []reflect.Type,
	corpusDir,
	cacheDir string) (err error) {}

func (TestDeps) RunFuzzWorker(fn func(fuzz.CorpusEntry) error) error {}

func (TestDeps) ReadCorpus(dir string, types []reflect.Type) ([]fuzz.CorpusEntry, error) {}

func (TestDeps) CheckCorpus(vals []any, types []reflect.Type) error {}

func (TestDeps) ResetCoverage() {}

func (TestDeps) SnapshotCoverage() {}

var CoverMode

var Covered

var CoverSelectedPackages

var CoverSnapshotFunc

var CoverProcessTestDirFunc

var CoverMarkProfileEmittedFunc

func (TestDeps) InitRuntimeCoverage() (mode string, tearDown func(string, string) (string, error), snapcov func() float64) {}

func coverTearDown(coverprofile string, gocoverdir string) (string, error) {}