8 lines
128 B
Go
Raw Permalink Normal View History

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