2017-02-22 21:53:44 +00:00
|
|
|
|
using Microsoft.DotNet.Tools.VSTest;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Xunit;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|
|
|
|
{
|
|
|
|
|
public class GivenDotnetVsTestForwardingApp
|
|
|
|
|
{
|
|
|
|
|
[Fact]
|
|
|
|
|
public void ItRunsVsTestApp()
|
|
|
|
|
{
|
|
|
|
|
new VSTestForwardingApp(new string[0])
|
2017-02-22 23:49:39 +00:00
|
|
|
|
.GetProcessStartInfo().Arguments.Should().EndWith("vstest.console.dll");
|
2017-02-22 21:53:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|