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

NUnit.Framework.ValueSourceAttribute

Indicates the source used to provide data for one parameter of a test method.
namespace NUnit.Framework { public class ValueSourceAttribute : NUnitAttribute, IParameterDataSource { public string SourceName { get; } public Type SourceType { get; } public ValueSourceAttribute(string sourceName); public ValueSourceAttribute(Type sourceType, string sourceName); public IEnumerable GetData(IParameterInfo parameter); } }