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;
namespace NUnit.Framework.Interfaces
{
public interface ICombiningStrategy
{
IEnumerable<ITestCaseData> GetTestCases(IEnumerable[] sources);
}
}