File: TestHelpers.cs
Web Access
Project: ..\..\..\test\System.CommandLine.StaticCompletions.Tests\System.CommandLine.StaticCompletions.Tests.csproj (System.CommandLine.StaticCompletions.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable disable
 
namespace System.CommandLine.StaticCompletions.Tests;
 
public class DynamicOption<T> : Option<T>, IDynamicOption
{
    public DynamicOption(string name) : base(name)
    {
    }
}
 
public class DynamicArgument<T> : Argument<T>, IDynamicArgument
{
    public DynamicArgument(string name) : base(name)
    {
    }
}