b240b855c1
Updated the test project to reflect the same.
27 lines
No EOL
430 B
C#
27 lines
No EOL
430 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace TestNamespace
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
[TestClass]
|
|
public class VSTestTests
|
|
{
|
|
[TestMethod]
|
|
public void VSTestPassTest()
|
|
{
|
|
}
|
|
|
|
[TestMethod]
|
|
public void VSTestFailTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
}
|
|
} |