mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
a0e5754464
* resolves possible import cycle in testutils assertions * gazelle * linter * linter
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package require
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assertions"
|
|
)
|
|
|
|
// Equal compares values using comparison operator.
|
|
func Equal(tb assertions.AssertionTestingTB, expected, actual interface{}, msg ...string) {
|
|
assertions.Equal(tb.Fatalf, expected, actual, msg...)
|
|
}
|
|
|
|
// DeepEqual compares values using DeepEqual.
|
|
func DeepEqual(tb assertions.AssertionTestingTB, expected, actual interface{}, msg ...string) {
|
|
assertions.DeepEqual(tb.Fatalf, expected, actual, msg...)
|
|
}
|
|
|
|
// NoError asserts that error is nil.
|
|
func NoError(tb assertions.AssertionTestingTB, err error, msg ...string) {
|
|
assertions.NoError(tb.Fatalf, err, msg...)
|
|
}
|
|
|
|
// ErrorContains asserts that actual error contains wanted message.
|
|
func ErrorContains(tb assertions.AssertionTestingTB, want string, err error, msg ...string) {
|
|
assertions.ErrorContains(tb.Fatalf, want, err, msg...)
|
|
}
|
|
|
|
// NotNil asserts that passed value is not nil.
|
|
func NotNil(tb assertions.AssertionTestingTB, obj interface{}, msg ...string) {
|
|
assertions.NotNil(tb.Fatalf, obj, msg...)
|
|
}
|