where did NUnit Gui Runner go? version 3.0.1

The NUnit team decided to make the GUI a separate product and will be releasing it separately. It is being rewritten from the ground up for NUnit 3, but hasn’t been released yet. Development is happening on the GitHub page at https://github.com/nunit/nunit-gui if you want to get involved or track the progress. Initial releases will … Read more

Differences between Assert.True and Assert.IsTrue in NUnit?

No difference. Assert.True() and others (without Is) were added since v2.5. From documentation for the version 2.5: (nunit v2.5) Two forms are provided for the True, False, Null and NotNull conditions. The “Is” forms are compatible with earlier versions of the NUnit framework, while those without “Is” are provided for compatibility with NUnitLite BTW, Disassembled … Read more

Code coverage with nUnit? [closed]

You can use NCover. Now its commercial, but version 1.5.8 (at the bottom of page, community edition) is still free and if you want to visualize it, then use NCoverExplorer. EDIT: It’s possible to wrap nUnit or mbUnit with Visual Studio code as well. VSTS Code Coverage Runner

How can I run NUnit tests in parallel?

If you want to run NUnit tests in parallel, there are at least 2 options: NCrunch offers it out of the box (without changing anything, but is a commercial product) NUnit 3 offers a Parallelizable attribute, which can be used to denote which tests can be run in parallel

tech