Home » Archives

Content in the Software Testing Category

[21 Sep 2011 | No Comment | ]

This video provides a code-centric introduction to the concepts, tools, and practices of Test-driven Development (TDD) in .NET. It starts with the basics of setting up a unit testing framework and writing the first test, then it moves on to techniques for mocking dependencies and demonstrate patterns like Dependency Injection that will help you move past testing just the basics.

[29 Aug 2011 | No Comment | ]

AutoMoq is an “auto-mocking” container that automatically creates for Moq any fake objects that are necessary to instantiate the class under test. You can access those fakes through the mocker or you can just ignore them if they’re not important.

[23 Aug 2011 | No Comment | ]

This short tutorial shows how to use NUnit and Visual C#.

Related article
* Test-Driven Development (TDD) with NUnit

[18 Aug 2011 | No Comment | ]

This video presents collected working experiences of several .NET projects using SpecFlow. This video presents questions you ran into when doing BDD with SpecFlow and possible answers.
Download this video from http://ndc2011.macsimum.no/mp4/Day1%20Wednesday/Track5%201500-1600.mp4

[11 Jul 2011 | No Comment | ]

Sure you already do some flavor of unit testing. You use “x”Unit. But.. Do you know what the toolset can do for you? How can its features impact your style of testing and how your style of testing can be reflected on the use of features? Would you like to know how to extend the capabilities of the toolset? Watch this video if you:
a) use NUnit you can learn more of its features by watching code
b) use another testing framework and feel that it falls short on your demands
c) just …