BloomTests.Book.BookStorageTests.GetInitialStorageUsingUNCPath C# (CSharp) Method

GetInitialStorageUsingUNCPath() private method

private GetInitialStorageUsingUNCPath ( ) : BookStorage
return Bloom.Book.BookStorage
        private BookStorage GetInitialStorageUsingUNCPath()
        {
            var testFolder = new TemporaryFolder();
            var bookPath = testFolder.Combine("theBook.htm");
            File.WriteAllText(bookPath,
                "<html><head> href='file://blahblah\\editMode.css' type='text/css' /></head><body><div class='bloom-page'></div></body></html>");
            var collectionSettings = new CollectionSettings(Path.Combine(testFolder.Path, "test.bloomCollection"));
            var folderPath = ConvertToNetworkPath(testFolder.Path);
            Debug.WriteLine(Path.GetPathRoot(folderPath));
            var storage = new BookStorage(folderPath, _fileLocator, new BookRenamedEvent(), collectionSettings);
            return storage;
        }