using Microsoft.VisualStudio.TestTools.UnitTesting; namespace test_csproj { [TestClass] public class Test { [TestMethod] public void TestMethod() { Assert.AreEqual((1 + 1), 2); } } }