I have some tests that use the built in Microsoft.VisualStudio.TestTools.UnitTesting, but can not get them to run.
Microsoft.VisualStudio.TestTools.UnitTesting
I am using visual studio 2012 ultimat
Please add the keyword public to your class definition. Your test class is currently not visible outside its own assembly.
namespace tests { [TestClass] public class SimpleTest { [TestMethod] public void Test() { Assert.AreEqual("a","a", "same"); } } }