Uses of Class
org.unitils.mock.argumentmatcher.ArgumentMatcher.MatchResult

Packages that use ArgumentMatcher.MatchResult
org.unitils.mock.argumentmatcher   
org.unitils.mock.argumentmatcher.impl   
 

Uses of ArgumentMatcher.MatchResult in org.unitils.mock.argumentmatcher
 

Methods in org.unitils.mock.argumentmatcher that return ArgumentMatcher.MatchResult
 ArgumentMatcher.MatchResult ArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches this object's expected argument, false otherwise.
static ArgumentMatcher.MatchResult ArgumentMatcher.MatchResult.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArgumentMatcher.MatchResult[] ArgumentMatcher.MatchResult.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of ArgumentMatcher.MatchResult in org.unitils.mock.argumentmatcher.impl
 

Methods in org.unitils.mock.argumentmatcher.impl that return ArgumentMatcher.MatchResult
 ArgumentMatcher.MatchResult SameArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches the expected argument, false otherwise.
 ArgumentMatcher.MatchResult RefEqArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches the expected argument, false otherwise.
 ArgumentMatcher.MatchResult NullArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object is not null, false otherwise.
 ArgumentMatcher.MatchResult NotNullArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object is not null, false otherwise.
 ArgumentMatcher.MatchResult LenEqArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches the expected argument, false otherwise.
 ArgumentMatcher.MatchResult EqualsArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches the expected argument, false otherwise.
 ArgumentMatcher.MatchResult DefaultArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given object matches the expected argument, false otherwise.
 ArgumentMatcher.MatchResult AnyArgumentMatcher.matches(Object argument, Object argumentAtInvocationTime)
          Returns true if the given argument is of the expected type, false otherwise.
 



Copyright © 2011. All Rights Reserved.