assert/type.go

8 line
121 B
Go

package assert
// T is an interface of what we use from testing.T
type T interface {
Error(...interface{})
Helper()
}