PairwiseAttribute
Marks a test as using a pairwise join of any supplied argument data. Arguments will be
combined in such a way that all possible pairs of arguments are used.
using NUnit.Framework.Internal.Builders;
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public class PairwiseAttribute : CombiningStrategyAttribute
{
public PairwiseAttribute()
: base(new PairwiseStrategy(), new ParameterDataSourceProvider())
{
}
}
}