7 lines
107 B
Go
7 lines
107 B
Go
|
package helper
|
||
|
|
||
|
type tester[T any] interface {
|
||
|
Errorf(string, ...any)
|
||
|
Run(name string, f func(T)) bool
|
||
|
}
|