// This is the same test but with parentheses to make explicit
// how the previous test should be evaluated.
public void testInequalityAssociativity5BP() throws JaxenException {
XPath xpath = new DOMXPath("(((2 != 3) != 1) != 4) != 1");
Boolean result = (Boolean) xpath.evaluate(doc);
assertFalse(result.booleanValue());
}
public void testEqualityAssociativity5() throws JaxenException {
XPath xpath = new DOMXPath("2 = 3 = 1 = 4 = 0");