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