mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
12 lines
341 B
C#
12 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())
|
|
{ }
|
|
}
|
|
}
|