2018-02-16 21:32:29 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace EndToEnd
|
|
|
|
|
{
|
|
|
|
|
public class GivenDotnetUsesDotnetTools : TestBase
|
|
|
|
|
{
|
2018-12-15 04:08:38 +00:00
|
|
|
|
[RequiresAspNetCore]
|
2018-02-16 21:32:29 +00:00
|
|
|
|
public void ThenOneDotnetToolsCanBeCalled()
|
|
|
|
|
{
|
|
|
|
|
new DotnetCommand()
|
|
|
|
|
.ExecuteWithCapturedOutput("dev-certs --help")
|
|
|
|
|
.Should().Pass();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|