Is there an official Visual Studio test project template for NUnit? If not, what might one look like?
6 Answers
Somebody on Github made a template: https://github.com/orangutanboy/NUnitTestFixtureTemplate

- 2,256
- 6
- 32
- 62
When creating a MVC application you have the option for creating a unit test project. Does not give examples but provides a framework.

- 37,935
- 10
- 86
- 125
There is no official template for NUnit exists in visual studio.you have to explaicitly download it. But it has general unit test framework.
you need to download Nunit framework using either nuget package. Select Tool menu -> Library package manager ->manage nuget package for solution or Select Tool menu -> Library package manager ->package manager for console. Add the reference in existing unit test project and remove the existing unit test namespace from it.

- 1,510
- 19
- 17
Yes, I have created a NUnit Visual Studio project template for the .Net framework, here.
You can Add The NUnit Nuget package reference for the Newer versions of .Net.

- 360
- 5
- 16