File: GivenDotnetUsesDotnetTools.cs
Web Access
Project: ..\..\..\test\EndToEnd.Tests\EndToEnd.Tests.csproj (EndToEnd.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace EndToEnd.Tests
{
    public class GivenDotnetUsesDotnetTools(ITestOutputHelper log) : SdkTest(log)
    {
        [Fact]
        public void ThenOneDotnetToolsCanBeCalled()
        {
            new DotnetCommand(Log)
                .Execute("dev-certs", "--help")
                .Should().Pass();
        }
    }
}