Exemplo n.º 1
0
        public void resolve_a_url_with_route_params_filled_by_input()
        {
            var input = new ChainUrlParams {
                Name = "Joel"
            };

            theUrlResolver.UrlFor(input, theChainWithRouteParams).ShouldEqual("http://server/Joel");
        }
 public void resolve_a_url_with_route_params_filled_by_input()
 {
     var input = new ChainUrlParams {Name = "Joel"};
     theUrlResolver.UrlFor(input, theChainWithRouteParams).ShouldBe("/Joel");
 }
 public string get_Name(ChainUrlParams values)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public string get_Name(ChainUrlParams values)
 {
     throw new NotImplementedException();
 }