8 lines
127 B
Go
8 lines
127 B
Go
package assert
|
|
|
|
// test is the interface used for tests
|
|
type test interface {
|
|
Errorf(format string, args ...any)
|
|
FailNow()
|
|
}
|