08f050c012
Extract packages to DotnetTools folder under sdk/{version} Add new resolver to discover it Add test to enforce package structure. It will fail when the structure changed
17 lines
396 B
C#
17 lines
396 B
C#
using FluentAssertions;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using Xunit;
|
|
|
|
namespace EndToEnd
|
|
{
|
|
public class GivenDotnetUsesDotnetTools : TestBase
|
|
{
|
|
[Fact]
|
|
public void ThenOneDotnetToolsCanBeCalled()
|
|
{
|
|
new DotnetCommand()
|
|
.ExecuteWithCapturedOutput("dev-certs --help")
|
|
.Should().Pass();
|
|
}
|
|
}
|
|
}
|