assertFalse("One of the pages in the first distributed pagedb has been cloned:"+page1.getUrl(), page1.equals(page2));
assertFalse("The first distributed pagedb should have two pages, yet it has more.", pages.hasNext());
db.close();
db = new PageDB(dbNames[1]);
db.open(DPageDB.READ);
pages = db.iterator();
assertTrue("The second distributed pagedb should have two pages, yet it has none.", pages.hasNext());
page1 = pages.next();
assertTrue("One of the pages in the second distributed pagedb is not expected: "+page1.getUrl(), page1.equals(page01) || page1.equals(page11));
assertTrue("The second distributed pagedb should have two pages, yet it has one.", pages.hasNext());