12 writes to InputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
32t.InputUrl = null; 46t.InputUrl = string.Empty; 76t.InputUrl = " "; 90t.InputUrl = " "; 103t.InputUrl = @"\\server\filename.ext"; 118t.InputUrl = Environment.CurrentDirectory; 133t.InputUrl = @"."; 147t.InputUrl = @"/usr/local/share"; 161t.InputUrl = @"c:\folder\filename.ext"; 175t.InputUrl = @"https://localhost/Example/Path"; 189t.InputUrl = @"https://example.com/Example/Path"; 203t.InputUrl = @"https://example.com/Example/../Path";
6 references to InputUrl
Microsoft.Build.Tasks.Core (2)
FormatUrl.cs (2)
24OutputUrl = InputUrl != null ? PathUtil.Format(InputUrl) : String.Empty;
Microsoft.Build.Tasks.UnitTests (4)
FormatUrl_Tests.cs (4)
48t.OutputUrl.ShouldBe(t.InputUrl); 78t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.InputUrl)).AbsoluteUri); 120t.OutputUrl.ShouldBe(new Uri(t.InputUrl).AbsoluteUri); 191t.OutputUrl.ShouldBe(t.InputUrl);