treendy
treendy

Reputation: 473

Can't get NUnit to work at all, regardless of version

I am been having a separate issue, but in doing that, I created a new test project from scratch to find the issue... which hasn't helped.

This is not related to my previous post, as that was based on which version. This issue is with a new project and doesn't matter which NUnit version I use.

I have tried the following tutorials on setting up NUnit, but nothing seems to be helping.

... I feel like I have missed a step somewhere?

Upvotes: 1

Views: 165

Answers (1)

CodeCaster
CodeCaster

Reputation: 151730

If you want to run non-MSTest tests from the Visual Studio Test Explorer (or context menu), you need to install the appropriate adapter.

In this case that'll be the https://www.nuget.org/packages/NUnit3TestAdapter/3.13.0, assuming you're using NUnit 3.

Upvotes: 2

Related Questions