2398 Views
If you are currently using NUnit to write your unit tests, then it is not at all difficult to migrate to using xUnit. The philosophical difference between the two is simply this: with xUnit you need to think of your tests as objects, rather than of methods. Here is a visual representation of equivalent test setups between NUnit and xUnit...
That being said I have been really enjoying some of xUnit's newer features, such as the data driven Theories (which will probably be the subject of my next blog post). :)