|
2 |
edited tags
|
||
|
1 |
|
||
Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?In handling a form post I have something like
I am not using explicit parameters in the method as I anticipate having to adapt to variable number of fields etc. and a method with 20+ parameters is not appealing. I suppose my only option here is mock up the whole HttpRequest, equivalent to what Rob Conery has done. Is this a best practice? Hard to tell with a framework which is so new. I've also seen solutions involving using an ActionFilter so that you can transform the above method signature to something like [SomeFilter] public Insert(Contact contact)
|
||||
