noMatch1.setEstimatedPrice(new BigDecimal(10000));
assertFalse("Failed: " + e, e.match(noMatch1));
Painting match = new Painting();
match.setEstimatedPrice(new BigDecimal(9999));
assertTrue("Failed: " + e, e.match(match));
}
public void testEvaluateLESS_THAN_EQUAL_TO() throws Exception {
Expression e = new ASTLessOrEqual(
new ASTObjPath("estimatedPrice"),