Category Archives: UnitTest

More on TFS and xUnit

In my previous post on TFS and xUnit I tried to describe how to get the unit testing framework xUnit to work with TFS. I have got a couple of comments about not being able to get things to work. Unfortunately … Continue reading

Posted in Tips, UnitTest | Tagged , | Leave a comment

HowTo: Team Foundation Server and xUnit

For quite some time I have been doing TDD and Continuous Integration (CI), both in my private projects as well as my professional ones. My preferred unit testing framework is xUnit and I recently had to set this up with Team … Continue reading

Posted in Tips, UnitTest | Tagged , | 2 Comments

NDepend

For the past week I have been playing around with NDepend. Thank you to Patrick Smaccia from the NDepend dev team for this opportunity. NDepend is an amazing utility that does dependency analysis on .NET applications. Installation is dead easy; … Continue reading

Posted in Code, UnitTest | Tagged | Leave a comment

Yet Another Code Snippet formatter

First some text. Then some code: [TestClass] public class MyTest { public MyTest() { } [TestMethod] public void Test() { // Fixture setup // Exercise system // Verify outcome Assert.Inconclusive(); // Teardown } } Then some more text:

Posted in UnitTest | Tagged | Leave a comment