Uses of Class
org.hamcrest.BaseMatcher
-
Packages that use BaseMatcher Package Description org.hamcrest The stable API defining Matcher and its associated interfaces and classes.org.hamcrest.beans Matchers of Java Bean properties and their values.org.hamcrest.collection Matchers of arrays and collections.org.hamcrest.core Fundamental matchers of objects and values, and composite matchers.org.hamcrest.number Matchers that perform numeric comparisons.org.hamcrest.object Matchers that inspect objects and classes.org.hamcrest.text Matchers that perform text comparisons.org.hamcrest.xml Matchers of XML documents. -
-
Uses of BaseMatcher in org.hamcrest
Subclasses of BaseMatcher in org.hamcrest Modifier and Type Class Description classCustomMatcher<T>Utility class for writing one off matchers.classCustomTypeSafeMatcher<T>Utility class for writing one off matchers.classDiagnosingMatcher<T>TODO(ngd): Document.classFeatureMatcher<T,U>Supporting class for matching a feature of an object.classTypeSafeDiagnosingMatcher<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.classTypeSafeMatcher<T>Convenient base class for Matchers that require a non-null value of a specific type. -
Uses of BaseMatcher in org.hamcrest.beans
Subclasses of BaseMatcher in org.hamcrest.beans Modifier and Type Class Description classHasProperty<T>A Matcher that checks that an object has a JavaBean property with the specified name.classHasPropertyWithValue<T>Matcher that asserts that a JavaBean property on an argument passed to the mock object meets the provided matcher.classSamePropertyValuesAs<T>static classSamePropertyValuesAs.PropertyMatcher -
Uses of BaseMatcher in org.hamcrest.collection
Subclasses of BaseMatcher in org.hamcrest.collection Modifier and Type Class Description classIsArray<T>Matcher for array whose elements satisfy a sequence of matchers.classIsArrayContaining<T>Matches if an array contains an item satisfying a nested matcher.classIsArrayContainingInAnyOrder<E>classIsArrayContainingInOrder<E>classIsArrayWithSize<E>Matches if array size satisfies a nested matcher.classIsCollectionWithSize<E>Matches if collection size satisfies a nested matcher.classIsEmptyCollection<E>Tests if collection is empty.classIsEmptyIterable<E>Tests if collection is empty.classIsIn<T>classIsIterableContainingInAnyOrder<T>classIsIterableContainingInOrder<E>classIsIterableWithSize<E>classIsMapContaining<K,V> -
Uses of BaseMatcher in org.hamcrest.core
Subclasses of BaseMatcher in org.hamcrest.core Modifier and Type Class Description classAllOf<T>Calculates the logical conjunction of multiple matchers.classAnyOf<T>Calculates the logical disjunction of multiple matchers.classCombinableMatcher<T>classDescribedAs<T>Provides a custom description to another matcher.classEvery<T>classIs<T>Decorates another Matcher, retaining the behaviour but allowing tests to be slightly more expressive.classIsAnything<T>A matcher that always returnstrue.classIsCollectionContaining<T>classIsEqual<T>Is the value equal to another value, as tested by theObject.equals(java.lang.Object)invokedMethod?classIsInstanceOfTests whether the value is an instance of a class.classIsNot<T>Calculates the logical negation of a matcher.classIsNull<T>Is the value null?classIsSame<T>Is the value the same object as another value?classStringContainsTests if the argument is a string that contains a substring.classStringEndsWithTests if the argument is a string that contains a substring.classStringStartsWithTests if the argument is a string that contains a substring.classSubstringMatcher -
Uses of BaseMatcher in org.hamcrest.number
Subclasses of BaseMatcher in org.hamcrest.number Modifier and Type Class Description classBigDecimalCloseToclassIsCloseToIs the value a number equal to a value within some range of acceptable error?classOrderingComparison<T extends java.lang.Comparable<T>> -
Uses of BaseMatcher in org.hamcrest.object
Subclasses of BaseMatcher in org.hamcrest.object Modifier and Type Class Description classHasToString<T>classIsCompatibleType<T>classIsEventFromTests if the value is an event announced by a specific object. -
Uses of BaseMatcher in org.hamcrest.text
Subclasses of BaseMatcher in org.hamcrest.text Modifier and Type Class Description classIsEmptyStringMatches empty Strings (and null).classIsEqualIgnoringCaseTests if a string is equal to another string, regardless of the case.classIsEqualIgnoringWhiteSpaceTests if a string is equal to another string, ignoring any changes in whitespace.classStringContainsInOrder -
Uses of BaseMatcher in org.hamcrest.xml
Subclasses of BaseMatcher in org.hamcrest.xml Modifier and Type Class Description classHasXPathApplies a Matcher to a given XML Node in an existing XML Node tree, specified by an XPath expression.
-