I have this controller method:
[GET("/whatever/list")]
public ActionResult Index(string sortby, string order)
I'm trying to test it with MvcContrib route testing:
"~/whatever/list".ShouldMapTo<MyController>(c => c.Index(string.Empty, string.Empty));
"~/whatever/list?sortby=type&order=desc".ShouldMapTo<MyController>(c => c.Index("type", "desc"));
However, it returns this error.
Failure: MvcContrib.TestHelper.AssertionException : Value for parameter 'sortby' did not match: expected '' but was ''; no value found in the route context action parameter named 'sortby' - does your matching route contain a token called 'sortby'?
What am I missing?
"~/whatever/list".ShouldMapTo<MyController>(c => c.Index(string.Empty, string.Empty));try withnullinstead ofstring.Emptybecausenullis the default value ofstring. – nemesv May 25 '12 at 18:19