NUnit Test MVC Controller

We want to test the controller in an MVC application. We want to pass values in and be able to catch the response. The response from our controller will tell us if the test has passed or failed. If you…

Building Real NUnit Tests

Using NUnit tests is about testing different aspects of your application. So that as you make changes and add features you don't break anything. But it can be hard to get started with unit testing. Sometimes we are…

Your First NUnit Test

Nunit is a unit testing framework for .NET, it was ported from a Java called JUnit. More About NUnit here. My earlier post about Testing and Unit testing About Unit Testing Getting Started with NUnit It's easy to…

About Unit Testing

As we move more and more into using continuous delivery we need to start getting better at building tests. Test Driven Development (TDD) was a trend and for a long time was the new hot, it's now been…