Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

tests not showing in test explorer

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(...);
        }
    }
}
 
PREVIOUS NEXT
Tagged: #tests #showing #test #explorer
ADD COMMENT
Topic
Name
3+8 =