A quick thing about setting up test projects through Visual Studios… basically how to do so. Add new Project -> Test (Project Types) -> Test Project. Now the easiest way I’ve added actual tests is just to add a normal class. Say SomeClassTest. using Microsoft.VisualStudio.TestTools.UnitTesting; [TestClass] public class SomeClassTest() { [TestMethod] public void SomeClass_CreateWithNull() { [...]
Tag Archives: Project