Here is the situation, my controller constructors take multiple interfaces as parameters. I do this in order to use constructor injection which allows me to inject the controllers with mocked objects in my unit tests. For example, my AccountController takes IEmailService, IFormsAuthentication and MembershipProvider (abstract class) as parameters. During my testing, I want to mock [...]
In my previous post, The Best IoC Container, I decided to go with StructureMap as the framework of choice. I received a comment telling me to check out Ninject and then a day or two after, I saw Corey Gaudin’s post on using Ninject with MVC, so I decided to try it out. It wasn’t [...]
As I previously mentioned in my post “The Best JavaScript Library“, I am in the process of developing an application/writing a book. I will be using asp.net MVC and a TDD approach to the application and book. As I have done with the JavaScript framework selection, I decided to look around and evaluate/review my options [...]
I am in the process of creating a new web application using asp.net mvc and I am trying to choose the best JavaScript library to use. I am pretty much sure that I am going to go with jQuery but nonetheless I wanted to review the libraries out there. One reason is that I am [...]
Wednesday, August 27, 2008
View Comments