Uses of Class
org.hamcrest.BaseMatcher

Packages that use BaseMatcher
org.hamcrest.core Fundamental matchers of objects and values, and composite matchers. 
org.junit.internal.matchers   
 

Uses of BaseMatcher in org.hamcrest.core
 

Subclasses of BaseMatcher in org.hamcrest.core
 class AllOf<T>
          Calculates the logical conjunction of two matchers.
 class AnyOf<T>
          Calculates the logical disjunction of two matchers.
 class DescribedAs<T>
          Provides a custom description to another matcher.
 class Is<T>
          Decorates another Matcher, retaining the behavior but allowing tests to be slightly more expressive.
 class IsAnything<T>
          A matcher that always returns true.
 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?
 

Uses of BaseMatcher in org.junit.internal.matchers
 

Subclasses of BaseMatcher in org.junit.internal.matchers
 class CombinableMatcher<T>
           
 class IsCollectionContaining<T>
           
 class StringContains
          Tests if the argument is a string that contains a substring.
 class SubstringMatcher
           
 class TypeSafeMatcher<T>
          Convenient base class for Matchers that require a non-null value of a specific type.