# Functions
Contains asserts item is contained by collection.
Equal asserts actual is equal to expected.
Error asserts err is not nil.
ErrorIs asserts 'err' matches the expected 'target'.
Eventually asserts fn() returns true within totalWait time, checking at the given interval.
IsType asserts both value's types are equal.
NoError asserts err is nil.
NotContains asserts item is not contained by collection.
NotEqual asserts actual is not equal to expected.
NotPanics asserts fn() does not panic.
NotZero asserts value is not the zero value.
Panics asserts fn() panics.
Prefix asserts actual starts with expected.
Subset asserts 'sub' is a subset of 'super'.
Suffix asserts actual ends with expected.
Zero asserts value is the zero value.