Files
go-golden/testingt.go

11 lines
250 B
Go

package golden
// TestingT is a interface describing a sub-set of methods of *testing.T which
// golden uses.
type TestingT interface {
Fatalf(format string, args ...interface{})
Helper()
Logf(format string, args ...interface{})
Name() string
}