Exemplo n.º 1
0
        public string GetOffLineFileName()
        {
            string show  = DataCleansing.FileSafeFileName(ShowName);
            string title = DataCleansing.FileSafeFileName(Title);

            return($"{GetDownloadFolder()}\\{show}\\{title}.mp3");
        }
Exemplo n.º 2
0
 public void ShouldMakeFilenameSafe(string text, string expected)
 {
     DataCleansing.FileSafeFileName(text).Should().Be(expected);
 }