Top "Nunit" questions

NUnit is an open source unit testing framework for .NET and Silverlight written in C#. It serves the same purpose as JUnit or TestNG does in the Java world, and is one of many in the xUnit family.

NUnit vs. Visual Studio 2008's test projects for unit testing

I am going to be starting up a new project at work and want to get into unit testing. We …

c# asp.net-mvc visual-studio-2008 unit-testing nunit
How do you test private methods with NUnit?

I am wondering how to use NUnit correctly. First, I created a separate test project that uses my main project …

c# unit-testing testing nunit
Unit testing and checking private variable value

I am writing unit tests with C#, NUnit and Rhino Mocks. Here are the relevant parts of a class I …

c# unit-testing nunit
Code coverage with nUnit?

Is there a way to see the code coverage when using nUnit? I know there's such a feature in Visual …

nunit code-coverage
How can I pass dynamic objects into an NUnit TestCase function?

I am writing a data-intensive application. I have the following tests. They work, but they're pretty redundant. [Test] public void …

c# nunit
NUnit vs. xUnit

What are the differences between NUnit and xUnit.net? What's the point of developing two of them, not only one? …

c# .net nunit xunit
xUnit or NUnit? What advantages and disadvantages of each other?

What are the pluses and minuses of each framework, comparing to each other? How well they work with ASP.NET …

c# unit-testing testing nunit xunit
How can I run NUnit tests in parallel?

I've got a large acceptance test (~10 seconds per test) test suite written using NUnit. I would like to make use …

nunit
Test parameterization in xUnit.net similar to NUnit

Are there any means in xUnit.net framework similar to the following features of NUnit? [Test, TestCaseSource("CurrencySamples")] public void …

c# .net unit-testing nunit xunit.net
Determine if code is running as part of a unit test

I have a unit test (nUnit). Many layers down the call stack a method will fail if it is running …

c# reflection nunit