Reduced the test name to overcome 256 character file length limit in windows

This commit is contained in:
Faizan Ahmad 2016-11-02 23:38:20 +05:30
parent dc249a94e9
commit 111499899d
12 changed files with 20 additions and 70 deletions

View file

@ -0,0 +1,32 @@
using System;
using Xunit;
namespace TestNamespace
{
public class VSTestXunitTests
{
[Fact]
public void VSTestXunitPassTest()
{
}
[Fact]
public void VSTestXunitFailTest()
{
Assert.Equal(1, 2);
}
#if DESKTOP
[Fact]
public void VSTestXunitPassTestDesktop()
{
}
#else
[Fact]
public void VSTestXunitFailTestNetCoreApp()
{
Assert.Equal(1, 2);
}
#endif
}
}