Microsoft VisualStudio Unit Testing class should be declared with a [TestClass] attribute
Example in C# :
[TestClass]
public class UnitTestMath
{
[TestMethod]
public void TestAdd()
{
}
}
[TestClass] attribute[TestClass]
public class UnitTestMath
{
[TestMethod]
public void TestAdd()
{
}
}