Assert/test.go
2025-02-15 16:52:59 -06:00

8 lines
127 B
Go

package assert
// test is the interface used for tests
type test interface {
Errorf(format string, args ...any)
FailNow()
}