Reduced the test name to overcome 256 character file length limit in windows
This commit is contained in:
parent
dc249a94e9
commit
111499899d
12 changed files with 20 additions and 70 deletions
32
TestAssets/TestProjects/VSTestDesktopAndNetCore/Tests.cs
Normal file
32
TestAssets/TestProjects/VSTestDesktopAndNetCore/Tests.cs
Normal file
|
@ -0,0 +1,32 @@
|
|||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace TestNamespace
|
||||
{
|
||||
[TestClass]
|
||||
public class VSTestTests
|
||||
{
|
||||
[TestMethod]
|
||||
public void VSTestPassTest()
|
||||
{
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void VSTestFailTest()
|
||||
{
|
||||
Assert.Fail();
|
||||
}
|
||||
|
||||
#if DESKTOP
|
||||
[TestMethod]
|
||||
public void VSTestPassTestDesktop()
|
||||
{
|
||||
}
|
||||
#else
|
||||
[TestMethod]
|
||||
public void VSTestFailTestNetCoreApp()
|
||||
{
|
||||
Assert.Fail();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue