Tag Archives: Project

Test Projects and Unit Tests In Visual Studio 2008

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() { [...]

Leave a comment Continue Reading →