8 lines
121 B
Go
8 lines
121 B
Go
package assert
|
|
|
|
// T is an interface of what we use from testing.T
|
|
type T interface {
|
|
Error(...interface{})
|
|
Helper()
|
|
}
|