IParameterDataSource
The IParameterDataSource interface is implemented by types
that can provide data for a test method parameter.
using System.Collections;
namespace NUnit.Framework.Interfaces
{
public interface IParameterDataSource
{
IEnumerable GetData(IParameterInfo parameter);
}
}