2018-02-16 13:32:29 -08:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
|
|
|
|
|
|
namespace EndToEnd
|
|
|
|
|
{
|
|
|
|
|
public class GivenDotnetUsesDotnetTools : TestBase
|
|
|
|
|
{
|
2018-12-14 20:08:38 -08:00
|
|
|
|
[RequiresAspNetCore]
|
2023-11-10 17:08:10 -08:00
|
|
|
|
public void ThenOneDotnetToolsCanBeCalled() => new DotnetCommand()
|
2018-02-16 13:32:29 -08:00
|
|
|
|
.ExecuteWithCapturedOutput("dev-certs --help")
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
}
|
|
|
|
|
}
|