mirror of
https://github.com/jimeh/go-golden.git
synced 2026-02-19 11:16:47 +00:00
11 lines
250 B
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
|
|
}
|