mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
13 lines
338 B
C#
13 lines
338 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())
|
||
|
{ }
|
||
|
}
|
||
|
}
|