private WikiPage childTwo;
private StandardOutAndErrorRecorder standardOutAndErrorRecorder;
@Before
public void setUp() throws Exception {
standardOutAndErrorRecorder = new StandardOutAndErrorRecorder();
WikiPage root = InMemoryPage.makeRoot("RooT");
pageOne = WikiPageUtil.addPage(root, PathParser.parse("PageOne"), "");
childOne = WikiPageUtil.addPage(pageOne, PathParser.parse("ChildOne"), "");
childTwo = WikiPageUtil.addPage(pageOne, PathParser.parse("ChildTwo"), "");