1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using Microsoft.VisualStudio.TestTools.UnitTesting; using Models.Classes; namespace API_Tests { [TestClass] public class UnitTest1 { [TestMethod] public void TestMethod1() { Test test = new Test(); test.TestMe(); } } }