When I turn on Live Testing my tests show "Excluded from live unit testing". This only happens if I use NUnit, using MSTest works fine.
I have: Visual Studio Enterprise 2017 (15.6.2) NUnit 3.10.1
A brief example of code
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;
namespace UnitTestProject1
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}
[TestFixture]
public class NUnitTest1
{
[Test]
public void NUnitTestMethod1()
{
}
}
}
TestMethod1() has a green checkmark next to the beaker indicating Live Unit testing is on and covered by a test.
NUnitTestMethod1() has the beaker, but no checkmark and mousing over it shows "Excluded from live unit testing".
What am I missing? Outside of me adding NUnit through Nuget and adding the extra test class/method there were no other edits or changes done. I'm running on a fresh install of Visual Studio where the only other thing added is ReSharper Ultimate (2017.3.2).
