I've written some custom model binders (implementing IModelBinder) in our ASP.NET MVC application. I'm wondering what is a good approach to unittest them (binders)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I did it this way:
And then I just passed in the bindingContext variable to the BindModel method of the object that implements the IModelBinder interface. |
|||
|
|
|
Here's a simple no-mocks way I wrote for you on my blog assuming you use the ValueProvider and not the HttpContext: http://www.hanselman.com/blog/SplittingDateTimeUnitTestingASPNETMVCCustomModelBinders.aspx
|
|||||
|
|
dict could be refactored like this
|
|||
|
|
|
@jonnii Not exactly. When you implement IModelBinder you have to implement:
This ModelBindingContext needs ControllerContext (in ctor) and other stuff. How to provide it during the tests? I could mock IValueProvider - that would be helpful I think - but what should I do with other parameters? |
|||
|
|