Example #1
0
 public void RouteValuesTest()
 {
     var route = new Route("/blog/{title}", () => null, null, null);
     var match = route.MatchPathToRoute("/blog/hello-world");
     Assert.AreEqual(true, match.Success);
     Assert.AreEqual("hello-world", match.Values["title"]);
 }