News

Welcome to part 4 in the TDD for ASP.NET MVC series. This time, I'll cover how to unit test view models in ASP.NETMVC. I'll focus primarily on how to unit test the model state validation that is ...
I've been looking into TDD lately. I've done unit testing on projects before, using nUnit, which appears to be the standard these days. I've also used some mocks, most recently nBuilder.
Writing unit tests up front feels counterproductive. If you’re in the camp that feels TDD is not realistic for your workflow, I have good news: Writing unit tests does not have to feel like a chore.
Test driven development (TDD) proliferated by agile methodology has not yet been completely embraced by all enterprises. As long as unit tests are written after the code has been developed (and thus ...
Michael talks about unit testing, integration tests, TDD and Clean Room Software Development, concluding that code quality is a function of thought and reflection, not bug prevention.
As this progression shows, even one of the components that's special to ASP.NET MVC -- the Controller -- is compatible with the TDD process. Even ASP.NET MVC routing can be tested using the Visual ...
Unit-testing should have as few barriers as possible. For relational databases those barriers range from external dependencies to speed to keeping the relational schema synchronized with your object ...