func Newf()

in testerror/error.go [26:30]


func Newf(format string, args ...any) *Error {
	return &Error{
		msg: fmt.Sprintf(format, args...),
	}
}