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