# Functions
Equal asserts that two values are equal.
ErrorIs asserts that "want" is in "got's" error chain.
False asserts that "got" is false.
Match asserts that the value matches a regexp.
Nil asserts that the value is nil.
NotEqual asserts that two values aren't equal.
NotNil asserts that the value isn't nil.
NotZero asserts that the value is non-zero.
Panics asserts that the function called panics.
Sprintf adds a user-defined message to the assertion's output.
True asserts that "got" is true.
Zero asserts that the value is its type's zero value.
# Interfaces
An Option configures an assertion.