CombinatorialAttribute
Marks a test to use a combinatorial join of any argument
data provided. Since this is the default, the attribute is
optional.
using NUnit.Framework.Internal.Builders;
using System;
namespace NUnit.Framework
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public class CombinatorialAttribute : CombiningStrategyAttribute
{
public CombinatorialAttribute()
: base(new CombinatorialStrategy())
{
}
}
}