How to use nunit with visual studio

Visual studio has a built-in unit test framework. I am wondering if I can use nunit instead?

+3
source share
3 answers

Yes, TestDriven.Net , Nunit, and Resharper provide integration with VS. More details in the two posts below (in response to the same question).

Unit test, NUnit or Visual studio?

and

Unit test, NUnit or Visual studio?

+5
source

Using NUnit without Extensions

This answer is long overdue, but I use NUnit in Visual Studio without any additional extensions (which are mostly also not free).

, ( ), F5 Ctrl-F5 NUnit .

( ) , , .

+1

Here's a free Visual Studio Add-on for NUnit: NUnitAddin

0
source

Source: https://habr.com/ru/post/1776050/


All Articles