While following the Professional ASP.NET MVC 1.0 sample chapter's section about Unit Testing, I decided to use NUnit because I do not have Visual Studio Professional. Because there is no wizard to create a Unit Test project in Visual Developer Express, I downloaded a NUnit MVC testing template and use it as my base project to complete the tutorial. The following are some different approaches I had to make in order to follow the tutorial:
- Instead of using [TestMethod] I used [Test], which what NUnit uses to mark test methods.
- I used the NUnit's GUI to perform the unit tests instead of using Visual Studio's since the Express version does not come with support for testing.
Comments