<PackageReference Include="NUnit" Version="4.3.0" />

NUnit.Framework.TestParameters

public class 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; } [Nullable(2)] public string this[string name] { [return: Nullable(2)] get; } public bool Exists(string name); public string Get(string name); public string Get(string name, string defaultValue); public T Get<[Nullable(2)] T>(string name, T defaultValue); public TestParameters(); } }