Compare defines the interface to compare values
type Compare func(x interface{}) assert.BoolOrComparison
func Contains(y interface{}) Compare
Contains checks if the value contains the given value
func DeepEquals(y interface{}) Compare
DeepEquals checks if two values are equal
func Equals(y interface{}) Compare
Equals checks if the value is equal to the given value
func False() Compare
False checks if the value is false
func GreaterThan(y int) Compare
GreaterThan checks if the value is greater than the given value
func HasLen(y int) Compare
HasLen checks if the value has the expected number of elements
func IsNil() Compare
IsNil checks if the value is nil
func Not(c Compare) Compare
Not checks if two values are not
func True() Compare
True checks if the value is true