shad-go/testequal/t.go

12 lines
217 B
Go
Raw Normal View History

2020-03-20 23:56:58 +00:00
// +build !change
package testequal
// T is an interface wrapper for *testing.T
// that contains only a small subset of methods.
2020-03-20 23:56:58 +00:00
type T interface {
Errorf(format string, args ...interface{})
Helper()
FailNow()
}