shad-go/testequal/t.go
2022-02-10 22:06:57 +00:00

12 lines
236 B
Go

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