StorytellerDocGen.DocSettings.ForTesting C# (CSharp) Method

ForTesting() public static method

public static ForTesting ( ) : DocSettings
return DocSettings
        public static DocSettings ForTesting()
        {
            var directory = Path.GetTempPath().AppendPath(Guid.NewGuid().ToString());
            new FileSystem().CreateDirectory(directory);
            return new DocSettings
            {
                Root = directory
            };
        }
    }