dotnet-installer/TestAssets/TestProjects/VSTestDotNetCore/Tests.cs
2017-03-02 20:35:20 -08:00

19 lines
325 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace TestNamespace
{
[TestClass]
public class VSTestTests
{
[TestMethod]
public void VSTestPassTest()
{
}
[TestMethod]
public void VSTestFailTest()
{
Assert.Fail();
}
}
}