#nullable enable
using System.Reflection;
namespace Bit.Test.Common.AutoFixture.Attributes;
///
/// This attribute helps to generate all possible combinations of the provided pattern values for a given number of parameters.
///
///
/// The repeating pattern values should be provided as an array for each parameter. Currently supports up to 3 parameters.
///
///
/// The attribute is a variation of the attribute and can be used in the same way, except that all fixed value parameters needs to be provided as an array.
///
///
/// Note: Use it with caution. While this attribute is useful for handling repeating parameters, having too many parameters should be avoided as it is considered a code smell in most of the cases.
/// If your test requires more than 2 repeating parameters, or the test have too many conditions that change the behavior of the test, consider refactoring the test by splitting it into multiple smaller ones.
///
///
///
/// 1st example:
///
/// [RepeatingPatternBitAutoData([false], [1,2,3])]
/// public void TestMethod(bool first, int second, SomeOtherData third, ...)
///
/// Would generate the following test cases:
///
/// false, 1
/// false, 2
/// false, 3
///
/// 2nd example:
///
/// [RepeatingPatternBitAutoData([false, true], [false, true], [false, true])]
/// public void TestMethod(bool first, bool second, bool third)
///
/// Would generate the following test cases:
///
/// false, false, false
/// false, false, true
/// false, true, false
/// false, true, true
/// true, false, false
/// true, false, true
/// true, true, false
/// true, true, true
///
///
///
public class RepeatingPatternBitAutoDataAttribute : BitAutoDataAttribute
{
private readonly List