1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-01-15 04:24:49 +03:00
bitwarden-android/test/Common/AutoFixture/Attributes/SutAutoDataAttribute.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
341 B
C#
Raw Normal View History

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())
{ }
}
}