assert/test.go
Eduard Urbach b3b33f85f5
All checks were successful
/ test (push) Successful in 14s
Updated formatting
2025-06-06 16:49:43 +02:00

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()
}