dotnet-installer/test/EndToEnd/GivenDotnetUsesDotnetTools.cs

18 lines
410 B
C#
Raw Normal View History

using FluentAssertions;
using Microsoft.DotNet.Tools.Test.Utilities;
using Xunit;
namespace EndToEnd
{
public class GivenDotnetUsesDotnetTools : TestBase
{
[RequiresAspNetCore]
public void ThenOneDotnetToolsCanBeCalled()
{
new DotnetCommand()
.ExecuteWithCapturedOutput("dev-certs --help")
.Should().Pass();
}
}
}