Uses of Interface
org.apache.hivemind.test.ArgumentMatcher

Packages that use ArgumentMatcher
org.apache.hivemind.test Base classes and utilities to support unit tests involving HiveMind. 
 

Uses of ArgumentMatcher in org.apache.hivemind.test
 

Classes in org.apache.hivemind.test that implement ArgumentMatcher
 class AbstractArgumentMatcher
          Base class that bridges from EasyMock's AbstractMatcher to HiveMind's ArgumentMatcher.
 class ArrayMatcher
          Used when the arguments to compare are a non-primitive array type.
 class EqualsMatcher
           
 class RegexpMatcher
          A ArgumentMatcher implementation that treats the expected value (provided while training the mock object) as a Perl5 Regular expression, which is matched against the actual value.
 class TypeMatcher
          An ArgumentMatcher that only compares the types of the two objects, not their actual values.
 

Constructors in org.apache.hivemind.test with parameters of type ArgumentMatcher
AggregateArgumentsMatcher(ArgumentMatcher matcher)
          Convienice for just a single matcher.
AggregateArgumentsMatcher(ArgumentMatcher[] matchers)
          Aggregates the individual matchers.