DatapointAttribute
Used to mark a field for use as a datapoint when executing a theory
within the same fixture that requires an argument of the field's Type.
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class DatapointAttribute : NUnitAttribute
{
}
}