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