public void TestFixtureSetUp()
        {
            EnsureEmptyTestStore();

            SetupPageStoreFile("NotAPage.txt");
            SetupPageStoreFile("Page1.md");

            this.fileSystemPageStore = new FileSystemPageStore(TestStoreName);
            this.files = this.fileSystemPageStore.ListPages();
        }
        public void SetUp()
        {
            EnsureEmptyTestStore();

            this.fileSystemPageStore = new FileSystemPageStore(TestStoreName);
        }