@Test
public void externalPageShouldBeAChildOfSuite() throws IOException {
fileSystem.makeFile(new File("somewhere/MyTest/myfile.html"), "stuff");
ExternalSuitePage suite = new ExternalSuitePage(new File("somewhere", "MyTest"), "MyTest", rootPage, fileSystem, variableSource);
ExternalTestPage testPage = (ExternalTestPage) suite.getChildren().get(0);
WikiPagePath path = testPage.getPageCrawler().getFullPath();
assertEquals("Page path for external file", "MyTest.myfile", path.toString());
}