0
1
llucycodes42
This code defines a simple TestClass and TestMethod. The TestClass will contain the methods and properties defined in the TestMethod.
Shortcut: mstest
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace ProjectNamespace.Test
{
[TestClass]
public class ClassNameTest
{
[TestMethod]
public void MethodName()
{
}
}
}