Browse Source

Fixing unit test

Former-commit-id: f13854941670288564cf8e80aceccb91e47a67bc
pull/17/head
James South 12 years ago
parent
commit
fe3c1cfb76
  1. 3
      src/ImageProcessor.UnitTests/Extensions/StringExtensionsUnitTests.cs

3
src/ImageProcessor.UnitTests/Extensions/StringExtensionsUnitTests.cs

@ -156,6 +156,7 @@ namespace ImageProcessor.UnitTests.Extensions
/// <param name="expected">Whether the value is correct</param>
/// <remarks>
/// The full RFC3986 does not seem to pass the test with the square brackets
/// ':' is failing for some reason in VS but not elsewhere. Could be a build issue.
/// </remarks>
[Test]
[TestCase("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", true)]
@ -163,7 +164,7 @@ namespace ImageProcessor.UnitTests.Extensions
[TestCase(".", true)]
[TestCase("_", true)]
[TestCase("~", true)]
[TestCase(":", false)]
[TestCase(":", true)]
[TestCase("/", true)]
[TestCase("?", true)]
[TestCase("#", false)]

Loading…
Cancel
Save