Update the new version of Microsoft.TestPlatform.cli which has fix related to testAdapterPath.

Updated the test project to reflect the same.
This commit is contained in:
Faizan Ahmad 2016-10-04 00:17:35 +05:30
parent a3a58423d1
commit b240b855c1
6 changed files with 60 additions and 53 deletions

View file

@ -2,6 +2,14 @@
namespace TestNamespace
{
public class Program
{
public static void Main(string[] args)
{
}
}
[TestClass]
public class VSTestTests
{
@ -9,11 +17,11 @@ namespace TestNamespace
public void VSTestPassTest()
{
}
[TestMethod]
[TestMethod]
public void VSTestFailTest()
{
Assert.Fail();
Assert.Fail();
}
}
}