NUnit vs. xUnit

At the time of writing this answer, the latest NUnit version is v3.5 and xUnit.net is v2.1.

Both frameworks are awesome, and they both support parallel test running (in a different way though). NUnit has been around since 2002, it’s widely used, well documented and has a large community, whereas xUnit.net is more modern, more TDD adherent, more extensible, and also trending in .NET Core development. It’s also well documented.

In addition to that, the main difference I noticed is the way that xUnit.net runs the test methods. So, in NUnit, we’ve got a test class and a set of test methods in it.

NUnit creates a new instance of the test class and then runs all of the test methods from the same instance.

Whereas, xUnit.net creates a new instance of the test class for each of the test methods.

Therefore, one cannot use fields or properties to share data among test methods which is a bad practice, as our test methods would be dependent to each other which is not acceptable in TDD. So if you use xunit.net, you could be sure that your test methods are completely isolated.

If you’re willing to share some data among your test methods though, xUnit will let you do so. Therefore, by default all test methods are completely isolated, but you can break this isolation in specific cases intentionally. I fancy this attitude, that’s why I like it better.

Leave a Comment