13 lines
368 B
C#
13 lines
368 B
C#
using FluentAssertions;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
namespace EndToEnd
|
|
{
|
|
public class GivenDotnetUsesDotnetTools : TestBase
|
|
{
|
|
[RequiresAspNetCore]
|
|
public void ThenOneDotnetToolsCanBeCalled() => new DotnetCommand()
|
|
.ExecuteWithCapturedOutput("dev-certs --help")
|
|
.Should().Pass();
|
|
}
|
|
}
|