final String destinationPage = "PageTwo.PageA";
final String destinationChildOne = "PageTwo.PageA.ChildOne";
final String destinationChildTwo = "PageTwo.PageA.ChildTwo";
final String destinationGrandChild = "PageTwo.PageA.ChildTwo.ChildTwoDotOne";
WikiPagePath sourceChildOnePath = PathParser.parse(sourceChildOne);
WikiPagePath sourceChildTwoPath = PathParser.parse(sourceChildTwo);
WikiPagePath sourceGrandChildPath = PathParser.parse(sourceGrandChild);
WikiPagePath destinationPagePath = PathParser.parse(destinationPage);
WikiPagePath destinationChildOnePath = PathParser.parse(destinationChildOne);
WikiPagePath destinationChildTwoPath = PathParser.parse(destinationChildTwo);
WikiPagePath destinationGrandChildPath = PathParser.parse(destinationGrandChild);
WikiPageUtil.addPage(root, sourceChildOnePath, "child1Content");
WikiPageUtil.addPage(root, sourceChildTwoPath, "child2Content");
WikiPageUtil.addPage(root, sourceGrandChildPath, "");