# Functions
Empty takes a value and checks whether it is empty for the given type supports slices, arrays, channels, strings, and maps.
Equal asserts that two objects are equal.
Error asserts that a function returned an error (i.e.
Exactly asserts that two objects are equal in value and type.
GreaterOrEqual asserts that the first element is greater than or equal to the second.
NoError asserts that a function returned no error (i.e.
NotEmpty takes a value and checks whether it isvnot empty for the given type supports slices, arrays, channels, strings, and maps.
NotEqual asserts that two objects are NOT equal.
NotNil asserts that the specified object is not nil.
RequireEqual asserts that two objects are equal.
RequireGreaterOrEqual asserts that the first element is greater than or equal to the second It marks the test as failed and stops execution.
RequireNoError asserts that a function returned no error (i.e.
RequireNotEqual asserts that two objects are NOT equal.
RequireNotNil asserts that the specified object is not nil.