MIF_E31211846/Library/PackageCache/com.unity.test-framework@1.3.9/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs

11 lines
195 B
C#

using System;
namespace UnityEditor.TestRunner.CommandLineParser
{
internal interface ICommandLineOption
{
string ArgName { get; }
void ApplyValue(string value);
}
}