Search Results

1
vote
3answers
222 views

How do you mock the caching object in asp.net mvc?

How would I mock the caching object on the ControllerContext object for my unit tests? I have tried creating a wrapper class like the following (since the cache object is a sealed class) with no lu …
0
votes

Separating Web Applications into multiple projects

A somewhat simple approach is to group the code in your app_code folder into it's own assembly. The only issue that you could possibly run into is if the code in your app_code folder is not decoupl …
4
votes

How to test custom Model Binders in ASP.NET MVC?

I did it this way: var formElements = new NameValueCollection() { {"FirstName","Bubba"}, {"MiddleName", ""}, {"LastName", "Gump"} }; var fakeController = GetControllerCont …