Search Results

1
vote
3answers
217 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 …
1
vote

How are Mocks meant to be used?

As someone said before, if you mock everything to isolate more granular than the class you are testing, you give up enforcing cohesion in you code that is under test. Keep in mind that mo …
1
vote

ASP/NET MVC: Test Controllers w/Sessions? Mocking?

I found mocking to be fairly easy. Here is an example of mocking the httpContextbase (that contains the request, session and response objects) using moq. [TestMethod] public …
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 …