12 writes to InputUrl
Microsoft.Build.Tasks.UnitTests (12)
FormatUrl_Tests.cs (12)
31
t.
InputUrl
= null;
45
t.
InputUrl
= string.Empty;
75
t.
InputUrl
= " ";
89
t.
InputUrl
= " ";
102
t.
InputUrl
= @"\\server\filename.ext";
117
t.
InputUrl
= Environment.CurrentDirectory;
132
t.
InputUrl
= @".";
146
t.
InputUrl
= @"/usr/local/share";
160
t.
InputUrl
= @"c:\folder\filename.ext";
174
t.
InputUrl
= @"https://localhost/Example/Path";
188
t.
InputUrl
= @"https://example.com/Example/Path";
202
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)
47
t.OutputUrl.ShouldBe(t.
InputUrl
);
77
t.OutputUrl.ShouldBe(new Uri(Path.Combine(Environment.CurrentDirectory, t.
InputUrl
)).AbsoluteUri);
119
t.OutputUrl.ShouldBe(new Uri(t.
InputUrl
).AbsoluteUri);
190
t.OutputUrl.ShouldBe(t.
InputUrl
);