IParameterDataSource
Provides data for a single test parameter.
using System.Collections;
using System.Runtime.CompilerServices;
namespace NUnit.Framework.Interfaces
{
[NullableContext(1)]
public interface IParameterDataSource
{
IEnumerable GetData(IParameterInfo parameter);
}
}