I am trying to run the test from the internal class and I am getting error:
UTA001: TestClass attribute defined on non-public class
How can I run tests of internal classes using VS and vstest.console.exe?
EDIT: Here is my class and test:
[TestClass]
internal class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
string test = "Test Test";
var res = test is IEnumerable;
}
}