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