long expected = j + i;
assertEquals("Wrong node after skip()", expected, propValue);
}
try {
NodeIterator it = result.getNodes();
it.skip(it.getSize() + 1);
fail("must throw NoSuchElementException");
} catch (NoSuchElementException e) {
// correct
}
// remove node for the next iteration