7 lines
107 B
Go
Raw Normal View History

2025-03-06 13:01:21 -05:00
package helper
type tester[T any] interface {
Errorf(string, ...any)
Run(name string, f func(T)) bool
}