core/internal/watermill/watermilltest/testing_tb.go
Dawid Wysokiński 4b828575e8
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
chore(deps): update golangci/golangci-lint to v1.57 (#32)
Reviewed-on: twhelp/corev3#32
2024-03-21 05:56:01 +00:00

10 lines
208 B
Go

package watermilltest
// TestingTB is a subset of the API provided by both *testing.T and *testing.B.
type TestingTB interface {
Helper()
Errorf(format string, args ...any)
FailNow()
Cleanup(f func())
}