2025-03-06 13:01:21 -05:00

7 lines
107 B
Go

package helper
type tester[T any] interface {
Errorf(string, ...any)
Run(name string, f func(T)) bool
}