mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-29 12:45:20 +01:00
13 lines
341 B
C#
13 lines
341 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes
|
|
{
|
|
public class SutAutoDataAttribute : CustomAutoDataAttribute
|
|
{
|
|
public SutAutoDataAttribute(params Type[] iCustomizationTypes) : base(
|
|
iCustomizationTypes.Append(typeof(SutProviderCustomization)).ToArray())
|
|
{ }
|
|
}
|
|
}
|