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

SequentialAttribute

Marks a test to use a Sequential join of any argument data provided. Arguments will be combined into test cases, taking the next value of each argument until all are used.
using NUnit.Framework.Internal.Builders; using System; using System; namespace NUnit.Framework { [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)] public class DatapointsAttribute : DatapointSourceAttribute { } } namespace NUnit.Framework { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public class SequentialAttribute : CombiningStrategyAttribute { public SequentialAttribute() : base(new SequentialStrategy(), new ParameterDataSourceProvider()) { } } }