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