Documentation ¶
Index ¶
- func AssertApproxDuration(t *testing.T, tolerance time.Duration, v1, v2 time.Duration, format string, ...)
- func AssertApproxTime(t *testing.T, tolerance time.Duration, v1, v2 time.Time, format string, ...)
- func AssertContains(t *testing.T, str string, substrs ...string)
- func AssertDone(t *testing.T, timeout time.Duration, doneCh <-chan struct{})
- func AssertEqual(t *testing.T, got interface{}, expected interface{}, msg ...interface{})
- func AssertErrContains(t *testing.T, err error, substrs ...string)
- func AssertNoErr(t *testing.T, err error)
- func AssertNotDone(t *testing.T, doneCh chan struct{})
- func AssertNotEqual(t *testing.T, got interface{}, expected interface{}, msg ...interface{})
- func MockTimeAfter(timeController func(triggerCh chan time.Time, waitCh chan time.Duration)) func(d time.Duration) <-chan time.Time
- func PanicHandler(fn func()) (panicPayload interface{}, stacktrace string)
- func ParseTime(t *testing.T, timestr string) time.Time
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AssertApproxDuration ¶
func AssertApproxDuration(t *testing.T, tolerance time.Duration, v1, v2 time.Duration, format string, args ...interface{})
AssertApproxDuration checks if the durations v1 and v2 are close up to the tolerance specified. The format and args slice can be used for generating an appropriate error message if they are not.
func AssertApproxTime ¶
func AssertApproxTime(t *testing.T, tolerance time.Duration, v1, v2 time.Time, format string, args ...interface{})
AssertApproxTime checks if the times v1 and v2 are close up to the tolerance specified. The format and args slice can be used for generating an appropriate error message if they are not.
func AssertContains ¶
AssertContains checks if the input string contains all the substrs specified on the substrs argument.
In case it doesn't contain any of the substrings it will fail the test with an appropriate error message.
func AssertEqual ¶
AssertEqual will compare the got argument with the expected argument and fail the test with an appropriate error message if they don't match.
func AssertErrContains ¶
AssertErrContains will first check if the error that the error indeed is not nil, and then check if its error message contains all the substrs specified on the substrs argument.
In case either assertion fails it will fail the test with an appropriate error message.
func AssertNoErr ¶
AssertNoErr will check if the input error is nil, and if not it will fail the test with an appropriate error message.
func AssertNotDone ¶
func AssertNotEqual ¶
AssertNotEqual will compare the got argument with the expected argument and fail the test with an appropriate error message if they match.
func MockTimeAfter ¶
func PanicHandler ¶
func PanicHandler(fn func()) (panicPayload interface{}, stacktrace string)
PanicHandler will run the input function and recover from any panics it might generate.
It will then save the panic payload and return it so it can be asserted by other functions on the test.
Types ¶
This section is empty.