dotnet-installer/TestAssets/TestProjects/VSTestXunitDotNetCore/UnitTest1.cs

20 lines
289 B
C#
Raw Normal View History

using System;
using Xunit;
namespace TestNamespace
{
public class VSTestXunitTests
{
[Fact]
public void VSTestXunitPassTest()
{
}
2016-11-01 20:26:42 +00:00
[Fact]
public void VSTestXunitFailTest()
{
2016-11-01 20:26:42 +00:00
Assert.Equal(1, 2);
}
}
}