shad-go/testequal/t.go
2022-03-15 23:49:56 +03:00

11 lines
218 B
Go

//go: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()
}