Files
go-golden/testing_t.go

10 lines
199 B
Go

package golden
type TestingT interface {
Errorf(format string, args ...interface{})
Fatalf(format string, args ...interface{})
Helper()
Logf(format string, args ...interface{})
Name() string
}