NUnit.Framework.TestParameters
TestParameters class holds any named parameters supplied to the test run
namespace NUnit.Framework
{
public class TestParameters
{
public int Count { get; }
public ICollection<string> Names { get; }
[System.Runtime.CompilerServices.Nullable(2)]
public string this[string name] {
[return: System.Runtime.CompilerServices.Nullable(2)]
get;
}
public bool Exists(string name);
public string Get(string name);
public string Get(string name, string defaultValue);
public T Get<[System.Runtime.CompilerServices.Nullable(2)] T>(string name, T defaultValue);
public TestParameters();
}
}