// Code generated by 'yaegi extract testing'. DO NOT EDIT.

//go:build go1.22
// +build go1.22

package stdlib

import (
	
	
)

func init() {
	Symbols["testing/testing"] = map[string]reflect.Value{
		// function, constant and variable definitions
		"AllocsPerRun":  reflect.ValueOf(testing.AllocsPerRun),
		"Benchmark":     reflect.ValueOf(testing.Benchmark),
		"CoverMode":     reflect.ValueOf(testing.CoverMode),
		"Coverage":      reflect.ValueOf(testing.Coverage),
		"Init":          reflect.ValueOf(testing.Init),
		"Main":          reflect.ValueOf(testing.Main),
		"MainStart":     reflect.ValueOf(testing.MainStart),
		"RegisterCover": reflect.ValueOf(testing.RegisterCover),
		"RunBenchmarks": reflect.ValueOf(testing.RunBenchmarks),
		"RunExamples":   reflect.ValueOf(testing.RunExamples),
		"RunTests":      reflect.ValueOf(testing.RunTests),
		"Short":         reflect.ValueOf(testing.Short),
		"Testing":       reflect.ValueOf(testing.Testing),
		"Verbose":       reflect.ValueOf(testing.Verbose),

		// type definitions
		"B":                  reflect.ValueOf((*testing.B)(nil)),
		"BenchmarkResult":    reflect.ValueOf((*testing.BenchmarkResult)(nil)),
		"Cover":              reflect.ValueOf((*testing.Cover)(nil)),
		"CoverBlock":         reflect.ValueOf((*testing.CoverBlock)(nil)),
		"F":                  reflect.ValueOf((*testing.F)(nil)),
		"InternalBenchmark":  reflect.ValueOf((*testing.InternalBenchmark)(nil)),
		"InternalExample":    reflect.ValueOf((*testing.InternalExample)(nil)),
		"InternalFuzzTarget": reflect.ValueOf((*testing.InternalFuzzTarget)(nil)),
		"InternalTest":       reflect.ValueOf((*testing.InternalTest)(nil)),
		"M":                  reflect.ValueOf((*testing.M)(nil)),
		"PB":                 reflect.ValueOf((*testing.PB)(nil)),
		"T":                  reflect.ValueOf((*testing.T)(nil)),
		"TB":                 reflect.ValueOf((*testing.TB)(nil)),

		// interface wrapper definitions
		"_TB": reflect.ValueOf((*_testing_TB)(nil)),
	}
}

// _testing_TB is an interface wrapper for TB type
type _testing_TB struct {
	IValue   interface{}
	WCleanup func(a0 func())
	WError   func(args ...any)
	WErrorf  func(format string, args ...any)
	WFail    func()
	WFailNow func()
	WFailed  func() bool
	WFatal   func(args ...any)
	WFatalf  func(format string, args ...any)
	WHelper  func()
	WLog     func(args ...any)
	WLogf    func(format string, args ...any)
	WName    func() string
	WSetenv  func(key string, value string)
	WSkip    func(args ...any)
	WSkipNow func()
	WSkipf   func(format string, args ...any)
	WSkipped func() bool
	WTempDir func() string
}

func ( _testing_TB) ( func()) {
	.WCleanup()
}
func ( _testing_TB) ( ...any) {
	.WError(...)
}
func ( _testing_TB) ( string,  ...any) {
	.WErrorf(, ...)
}
func ( _testing_TB) () {
	.WFail()
}
func ( _testing_TB) () {
	.WFailNow()
}
func ( _testing_TB) () bool {
	return .WFailed()
}
func ( _testing_TB) ( ...any) {
	.WFatal(...)
}
func ( _testing_TB) ( string,  ...any) {
	.WFatalf(, ...)
}
func ( _testing_TB) () {
	.WHelper()
}
func ( _testing_TB) ( ...any) {
	.WLog(...)
}
func ( _testing_TB) ( string,  ...any) {
	.WLogf(, ...)
}
func ( _testing_TB) () string {
	return .WName()
}
func ( _testing_TB) ( string,  string) {
	.WSetenv(, )
}
func ( _testing_TB) ( ...any) {
	.WSkip(...)
}
func ( _testing_TB) () {
	.WSkipNow()
}
func ( _testing_TB) ( string,  ...any) {
	.WSkipf(, ...)
}
func ( _testing_TB) () bool {
	return .WSkipped()
}
func ( _testing_TB) () string {
	return .WTempDir()
}