class
Matches if all given argument matchers match.
final class
class
Matches if the argument is an array where the elements are equal to the given array.
class
Captures the argument to retrieve it later and matches anything.
class
Matches if the argument, when compared (Comparator.compare()
), agrees with the logical operator.
class
Matches if the argument is equal when compared (as in Comparable.compareTo() == 0
) to the given value.
class
Base class for matchers that are comparing a value to another.
class
Matches if the argument is a string containing a given substring.
class
Matches if the argument is a string ending with a given suffix.
class
Matches if the argument is equal to the given value.
class
Matches if the argument is a number equal to the given value with some tolerance equal to delta.
class
Matches if the argument is a string in which a regex can be found.
class
Matches if the argument is greater or equal to the given value.
class
Matches if the argument is strictly greater than the given value.
class
Matches if the argument is an instance of the given class.
class
Matches if the argument is less or equal to the given value.
class
Match if the argument is less than the given value.
class
Matches if the argument is a string matching a given regex.
class
Matches if the argument DOESN'T match another.
final class
Matches if the argument is not null.
class
Matches if the argument is null.
class
Matches if any given argument matcher matches.
class
Matches if the argument is the same instance as the given value.
class
Matches if the argument is a string starting with the given prefix.