Uses of Class
org.hamcrest.BaseMatcher
Packages that use BaseMatcher | |
---|---|
org.hamcrest | The stable API defining Matcher and its associated interfaces and classes. |
org.hamcrest.core | Fundamental matchers of objects and values, and composite matchers. |
Uses of BaseMatcher in org.hamcrest |
---|
Subclasses of BaseMatcher in org.hamcrest | |
---|---|
class |
CustomMatcher<T> Utility class for writing one off matchers. |
class |
CustomTypeSafeMatcher<T> Utility class for writing one off matchers. |
class |
DiagnosingMatcher<T> TODO(ngd): Document. |
class |
FeatureMatcher<T,U> Supporting class for matching a feature of an object. |
class |
TypeSafeDiagnosingMatcher<T> Convenient base class for Matchers that require a non-null value of a specific type and that will report why the received value has been rejected. |
class |
TypeSafeMatcher<T> Convenient base class for Matchers that require a non-null value of a specific type. |
Uses of BaseMatcher in org.hamcrest.core |
---|
Subclasses of BaseMatcher in org.hamcrest.core | |
---|---|
class |
AllOf<T> Calculates the logical conjunction of multiple matchers. |
class |
AnyOf<T> Calculates the logical disjunction of multiple matchers. |
class |
CombinableMatcher<T> |
class |
DescribedAs<T> Provides a custom description to another matcher. |
class |
Every<T> |
class |
Is<T> Decorates another Matcher, retaining the behaviour but allowing tests to be slightly more expressive. |
class |
IsAnything<T> A matcher that always returns true . |
class |
IsCollectionContaining<T> |
class |
IsEqual<T> Is the value equal to another value, as tested by the Object.equals(java.lang.Object) invokedMethod? |
class |
IsInstanceOf Tests whether the value is an instance of a class. |
class |
IsNot<T> Calculates the logical negation of a matcher. |
class |
IsNull<T> Is the value null? |
class |
IsSame<T> Is the value the same object as another value? |
class |
StringContains Tests if the argument is a string that contains a substring. |
class |
StringEndsWith Tests if the argument is a string that contains a substring. |
class |
StringStartsWith Tests if the argument is a string that contains a substring. |
class |
SubstringMatcher |