Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Visual Studio Test Project template for NUnit?

Is there an official Visual Studio test project template for NUnit? If not, what might one look like?

like image 478
kenwarner Avatar asked Mar 14 '10 21:03

kenwarner


People also ask

Is NUnit still used?

The latest version of NUnit is NUnit3 that is rewritten with many new features and has support for a wide range of . NET platforms. NUnit has been downloaded more than 126 million times from NuGet.org.


2 Answers

There is no official one. Just start a class library project and import the nUnit assemblies to it.

There are plenty of template how to articles around though - here is one.

We can use this official Template for Unit Testing as well.

like image 131
Oded Avatar answered Oct 20 '22 16:10

Oded


Somebody on Github made a template: https://github.com/orangutanboy/NUnitTestFixtureTemplate

like image 29
David West Avatar answered Oct 20 '22 15:10

David West