8 lines
128 B
Go
Raw Normal View History

2023-08-31 17:03:52 +02:00
package assert
// test is the interface used for tests.
type test interface {
Errorf(format string, args ...any)
FailNow()
}