root = InMemoryPage.makeRoot("RooT");
WikiPageUtil.addPage(root, PathParser.parse("TestPageOne"), "TestPageOne has some testing content and a child");
WikiPage child = WikiPageUtil.addPage(root, PathParser.parse("TestPageOne.ChildPage"), "ChildPage is a child of TestPageOne");
PageData data = child.getData();
data.setAttribute("Test");
child.commit(data);
WikiPageUtil.addPage(root, PathParser.parse("TestPageTwo"), "TestPageTwo has a bit of content too");
runner = new SuiteSpecificationRunner(root);
}