# Functions
Eq asserts the values are equal.
EqItems asserts the given slices have the same elements (regardless of their order).
Err asserts the error is not nil.
Fail fails immediately.
Failf fails immediately.
MustPanic ensures that the caller's context will panic and that the panic will match the given regular expression
func() { defer mustPanic(t, regexp.MustCompile("+*")) panic("some text") }.
NoErr asserts the error is nil.
NotEq asserts the given values are not equal.
True asserts that the given value is a boolean true.