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