Uses of Class
org.junit.internal.matchers.CombinableMatcher

Packages that use CombinableMatcher
org.junit.internal.matchers   
org.junit.matchers Provides useful additional Matchers for use with the Assert.assertThat(Object, org.hamcrest.Matcher) statement 
 

Uses of CombinableMatcher in org.junit.internal.matchers
 

Methods in org.junit.internal.matchers that return CombinableMatcher
 CombinableMatcher<T> CombinableMatcher.and(Matcher<? extends T> matcher)
           
 CombinableMatcher<T> CombinableMatcher.or(Matcher<? extends T> matcher)
           
 

Uses of CombinableMatcher in org.junit.matchers
 

Methods in org.junit.matchers that return CombinableMatcher
static
<T> CombinableMatcher<T>
JUnitMatchers.both(Matcher<T> matcher)
          This is useful for fluently combining matchers that must both pass.
static
<T> CombinableMatcher<T>
JUnitMatchers.either(Matcher<T> matcher)
          This is useful for fluently combining matchers where either may pass, for example: