org.jmock.core.constraint

Class Or

Implemented Interfaces:
Constraint, SelfDescribing

public class Or
extends Object
implements Constraint

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

Constructor Summary

Or(Constraint left, Constraint right)

Method Summary

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

Constructor Details

Or

public Or(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.