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've got a set of test cases, some of which are expected to throw exceptions. Because of this, I have …
c# nunit continuous-integration teamcityWhat to prefer: Assert.That(obj.Foo, Is.EqualTo(true)) or Assert.True(obj.Foo) For me, both asserts are …
c# unit-testing nunitReading through the existing unit testing related threads here on Stack Overflow, I couldn't find one with a clear answer …
c# unit-testing file-io dependency-injection nunitI want to create NUnit test to ensure that my function does not throw an exception. Is there some specific …
c# .net unit-testing testing nunitI have an ASP.NET Web API application, with an ApiController that features asynchronous methods, returning Task<> objects …
.net unit-testing asynchronous nunit async-awaitThe NUnit documentation doesn't tell me when to use a method with a TestFixtureSetup and when to do the setup …
c# unit-testing nunitI am writing some unit tests with NUnit 3.0 and, unlike v2.x, ExpectedException() has been removed from the library. Based …
c# unit-testing nunit nunit-3.0