shad-go/testequal/t.go

12 lines
218 B
Go
Raw Permalink Normal View History

2022-02-10 22:06:57 +00:00
//go:build !change
2020-03-20 23:56:58 +00:00
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()
}