I've inherited a visual studio 2017 solution that has a unit test project included. The only project reference that look test related to testing is Microsoft.Owin.Test. The tests include TestClass and TestMethod attributes (defined in microsoft.visualstudio.testtools.unittesting)
So, does this mean I'm using MSTest or ?
I'm trying to track down a problem where a test class that inherits another test class won't run the inherited tests when I try to run that tests for that class directly (right click: run tests in class). They run fine from Test Explorer. Seems first I need to determine if I'm using nunit, mstest, or...