Files
config/test/require/fail.go
2025-11-21 11:58:20 +03:00

10 lines
137 B
Go

package require
import "testing"
func Fail(t *testing.T, msg string, args ...any) {
t.Helper()
t.Errorf(msg, args...)
t.FailNow()
}