public void testSelectNodes()
{
Document document = parse();
List<Node> functions = document.selectNodes("//dns:functions");
assertFunctionsNodes(functions);
Element root = document.getRoot();
functions = root.selectNodes("dns:functions");
assertFunctionsNodes(functions);