Abbotware.UnitTests.Core.PathHelperTests.LogFileModuleNameRooted_Linux C# (CSharp) Method

LogFileModuleNameRooted_Linux() private method

private LogFileModuleNameRooted_Linux ( ) : void
return void
        public void LogFileModuleNameRooted_Linux()
        {
            this.SkipTestOnWindows();

            var windows = @"C:/temp/L:ogs/[NOT AVAILABLE][UnitTest].l:og";

            var cleaned = PathHelper.CleanPath(windows);

            Assert.AreEqual("C/temp/Logs/[NOT AVAILABLE][UnitTest].log", cleaned);
        }
    }