Using NUnit with Visual Studio's Test Explorer
26 Feb 2016Currently there’s a problem with the 3.0+ versions of NUnit using the NUnitTestAdapter where tests are not added to Visual Studio’s test explorer on build. We can work around this by using NUnit 2.6.4 along with the NUnitTestAdapter 2.0 so that they are compatible with each other:
1: Install NUnit with NUGET package manager
2: Install the NUnitTestAdapter
Now since both versions of NUnit and the adapter match, Visual Studio shouldn’t have any problems find the tests automagically now!
Someone already posted a solution for this but I figured I would summarize it in a quick post.