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

ICombiningStrategy

public interface ICombiningStrategy
CombiningStrategy is the abstract base for classes that know how to combine values provided for individual test parameters to create a set of test cases.
using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace NUnit.Framework.Interfaces { [System.Runtime.CompilerServices.NullableContext(1)] public interface ICombiningStrategy { IEnumerable<ITestCaseData> GetTestCases(IEnumerable[] sources); } }