public class DecimalRange extends Object implements ValuePredicate<BigDecimal>
Constructor and Description |
---|
DecimalRange(BigDecimal lowerBound,
BigDecimal upperBound)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
accepts(BigDecimal expected,
BigDecimal actual)
Returns
true iff both values satisfy this predicate. |
String |
describeExpected(BigDecimal expected,
BigDecimal actual)
Returns an expected value as readable text.
|
public DecimalRange(BigDecimal lowerBound, BigDecimal upperBound)
lowerBound
- lower bound offset from expected valueupperBound
- upper bound offset from expected valuepublic boolean accepts(BigDecimal expected, BigDecimal actual)
ValuePredicate
true
iff both values satisfy this predicate.accepts
in interface ValuePredicate<BigDecimal>
expected
- the expected value (nullable)actual
- the actual value (nullable)true
iff both values satisfy this predicate, false
otherwise.public String describeExpected(BigDecimal expected, BigDecimal actual)
ValuePredicate
describeExpected
in interface ValuePredicate<BigDecimal>
expected
- the expected value (nullable)actual
- the actual value (nullable)null
if is always/never expectedCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.