b90b191ef0
* Fix test issue failing with PathTooLongIssue (cherry picked from commit 340254f7742201c74ed1a5c349bdca89113bd5dc) * fix for issues: 1) https://github.com/Microsoft/vstest/issues/755 2) https://github.com/Microsoft/vstest/issues/687 3) https://github.com/Microsoft/vstest/issues/737 (cherry picked from commit 0e93b2a5d4734637538781fa5401ed81a31eea0f) * use new version * Update version * Fix pathtoolong issue * Fix test
35 lines
726 B
C#
35 lines
726 B
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
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
|
|
}
|
|
}
|