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.
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 nunitI am wondering how to use NUnit correctly. First, I created a separate test project that uses my main project …
c# unit-testing testing nunitI am writing unit tests with C#, NUnit and Rhino Mocks. Here are the relevant parts of a class I …
c# unit-testing nunitIs there a way to see the code coverage when using nUnit? I know there's such a feature in Visual …
nunit code-coverageI am writing a data-intensive application. I have the following tests. They work, but they're pretty redundant. [Test] public void …
c# nunitWhat are the pluses and minuses of each framework, comparing to each other? How well they work with ASP.NET …
c# unit-testing testing nunit xunitI've got a large acceptance test (~10 seconds per test) test suite written using NUnit. I would like to make use …
nunitAre 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.netI have a unit test (nUnit). Many layers down the call stack a method will fail if it is running …
c# reflection nunit