|
|
@@ -411,6 +411,16 @@ namespace MonoTests.System
|
|
|
Assert.AreEqual ("vv", m.QueryParameters ["p1"], "#5");
|
|
|
}
|
|
|
|
|
|
+ [Test]
|
|
|
+ public void Match3 ()
|
|
|
+ {
|
|
|
+ var template = new UriTemplate ("test");
|
|
|
+ var match1 = template.Match (new Uri ("http://something"), new Uri ("http://something/test"));
|
|
|
+ var match2 = template.Match (new Uri ("http://something/something2"), new Uri ("http://something/something2/test"));
|
|
|
+ Assert.IsNotNull (match1, "#1");
|
|
|
+ Assert.IsNotNull (match2, "#2");
|
|
|
+ }
|
|
|
+
|
|
|
[Test]
|
|
|
public void MatchWildcard ()
|
|
|
{
|