src/testing: add testing.Verbose()

Этот коммит содержится в:
Damian Gryski 2021-11-11 08:27:53 -08:00 коммит произвёл Ayke
родитель 51290e5842
коммит 2e6b92fc56

Просмотреть файл

@ -297,6 +297,11 @@ func Short() bool {
return flagShort
}
// Verbose reports whether the -test.v flag is set.
func Verbose() bool {
return flagVerbose
}
func TestMain(m *M) {
os.Exit(m.Run())
}