* installs a package that contains a node with childnode ordering and full-coverage sub nodes.
* see JCRVLT-44
*/
@Test
public void testChildNodeOrder2() throws IOException, RepositoryException, PackageException {
JcrPackage pack = packMgr.upload(getStream("testpackages/test_childnodeorder2.zip"), false);
assertNotNull(pack);
pack.install(getDefaultOptions());
assertNodeExists("/tmp/test/en");
NodeIterator iter = admin.getNode("/tmp/test/en").getNodes();
StringBuilder names = new StringBuilder();
while (iter.hasNext()) {