* @throws FunctionCallException
* @throws UnsupportedAxisException
*/
public void testConcurrentModification() throws FunctionCallException, UnsupportedAxisException
{
Navigator nav = new DocumentNavigator();
Object document = nav.getDocument("xml/testNamespaces.xml");
Iterator descendantOrSelfAxisIterator = nav.getDescendantOrSelfAxisIterator(document);
while (descendantOrSelfAxisIterator.hasNext()) {
Object node = descendantOrSelfAxisIterator.next();
Iterator namespaceAxisIterator = nav.getNamespaceAxisIterator(node);
while (namespaceAxisIterator.hasNext()) {
namespaceAxisIterator.next();
}
}
}