NUnit.Framework.Internal.Builders.PairwiseStrategy
PairwiseStrategy creates test cases by combining the parameter
data so that all possible pairs of data items are used.
namespace NUnit.Framework.Internal.Builders
{
public class PairwiseStrategy : ICombiningStrategy
{
public IEnumerable<ITestCaseData> GetTestCases(IEnumerable[] sources);
public PairwiseStrategy();
}
}