dotnet-installer/test/Microsoft.DotNet.Tools.Tests.Utilities/Commands/DotnetCommand.cs

21 lines
525 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.DotNet.Cli.Utils;
namespace Microsoft.DotNet.Tools.Test.Utilities
{
2017-03-14 21:22:11 +00:00
public class DotnetCommand : TestCommand
{
public DotnetCommand()
: this(DotnetUnderTest.FullName)
{
}
public DotnetCommand(string dotnetUnderTest)
: base(dotnetUnderTest)
{
}
}
}