[fxcop] Microsoft.Plugin.Uri.UnitTests (#7562)

* Enable FxCop for Microsoft.Plugin.Uri.UnitTests

* Fix indentation
This commit is contained in:
Luthfi Mawarid
2020-10-26 16:15:05 -07:00
committed by GitHub
parent ca1e5d111a
commit cbb4307f6d
2 changed files with 6 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ namespace Microsoft.Plugin.Uri.UnitTests.UriHelper
[TestCase("[::]", true, "http://[::]/")]
[TestCase("[2001:0DB8::1]", true, "http://[2001:db8::1]/")]
[TestCase("[2001:0DB8::1]:80", true, "http://[2001:db8::1]/")]
public void TryParse_CanParseHostName(string query, bool expectedSuccess, string expectedResult)
public void TryParseCanParseHostName(string query, bool expectedSuccess, string expectedResult)
{
// Arrange
var parser = new ExtendedUriParser();