core/internal/domain/domaintest/testing_tb.go

10 lines
213 B
Go

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