Tes tidak ditampilkan di Explorer Tes

using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Your.Namespace.Here
{
 // must be public in order to the IDE to find it
 [TestClass]
    public class Tests
    {
        // Add here your test
        [TestMethod]
        public void MyTest()
        {
            Assert.IsTrue(...);
        }
    }
}
loonix