org.jmock.core.constraint

Class And

Implemented Interfaces:
Constraint, SelfDescribing

public class And
extends Object
implements Constraint

Calculates the logical conjunction of two constraints. Evaluation is shortcut, so that the second constraint is not called if the first constraint returns false.

Constructor Summary

And(Constraint left, Constraint right)

Method Summary

StringBuffer
describeTo(StringBuffer buffer)
boolean
eval(Object o)
Evaluates the constraint for argument o.

Constructor Details

And

public And(Constraint left,
           Constraint right)

Method Details

describeTo

public StringBuffer describeTo(StringBuffer buffer)
Specified by:
describeTo in interface SelfDescribing

eval

public boolean eval(Object o)
Evaluates the constraint for argument o.
Specified by:
eval in interface Constraint
Parameters:
o - the object against which the constraint is evaluated.
Returns:
true if o meets the constraint, false if it does not.