use of org.apache.activemq.filter.XPathExpression in project activemq-artemis by apache.
the class SelectorParserTest method testParseXPath.
public void testParseXPath() throws Exception {
BooleanExpression filter = parse("XPATH '//title[@lang=''eng'']'");
assertTrue("Created XPath expression", filter instanceof XPathExpression);
LOG.info("Expression: " + filter);
}
Aggregations