BloomTests.CollectionTab.LibraryModelTests.MakeBook C# (CSharp) Method

MakeBook() private method

private MakeBook ( ) : string
return string
        private string MakeBook()
        {
            var f = new TemporaryFolder(_collection, "unittest-" + Guid.NewGuid());
            File.WriteAllText(Path.Combine(f.Path, "one.htm"), "test");
            File.WriteAllText(Path.Combine(f.Path, "one.css"), "test");
            return f.Path;
        }