This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/test/dotnet-msbuild.Tests/GivenDotnetVsTestForwardingApp.cs
2017-02-22 15:49:39 -08:00

17 lines
414 B
C#

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])
.GetProcessStartInfo().Arguments.Should().EndWith("vstest.console.dll");
}
}
}