
In Visual Studio 2012 onwards , there is a new project template called Unit Test Library (Windows Store apps). A Unit Test Library can contain many test classes.Test classes are marked with the TestClass attribute. Test classes contain test methods, initialization code, and cleanup code.Test method — Test methods are marked with the TestMethod attribute. These methods runseparately one by one. Each method has a result that determines whether the...