Search Results

2
votes
4answers
332 views

Constructor parameters for controllers without a DI container for ASP.NET MVC

Does anyone have any code examples on how to create controllers that have parameters other than using a Dependency Injection Container? I see plenty of samples with using containers like S …
-1
votes

Constructor parameters for controllers without a DI container for ASP.NET MVC

Creative approach LOL. I would suspect that MS will eventually add a easier mechanism for doing this if we didn't want to depend on a third party open source codebase (DI container). …
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 …
1
vote

Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?

I use Autofac as my DI container. A null container exception gets thrown when trying to dispose of the container objects. …
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 …