# Functions
AllocsPerRun returns the average number of allocations during calls to f.
Benchmark benchmarks a single function.
CoverMode reports what the test coverage mode is set to.
Init registers testing flags.
MainStart is meant for use by tests generated by 'go test'.
Short reports whether the -test.short flag is set.
Testing returns whether the program was compiled as a test, using "tinygo test".
Verbose reports whether the -test.v flag is set.
# Structs
B is a type passed to Benchmark functions to manage benchmark timing and to specify the number of iterations to run.
BenchmarkResult contains the results of a benchmark run.
F is a type passed to fuzz tests.
InternalBenchmark is an internal type but exported because it is cross-package; it is part of the implementation of the "go test" command.
No description provided by the author
InternalFuzzTarget is an internal type but exported because it is cross-package; it is part of the implementation of the "go test" command.
InternalTest is a reference to a test that should be called during a test suite run.
M is a test suite.
A PB is used by RunParallel for running parallel benchmarks.
T is a type passed to Test functions to manage test state and support formatted test logs.
# Interfaces
TB is the interface common to T and B.