mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
21 lines
760 B
C#
21 lines
760 B
C#
|
using System;
|
||
|
using System.Linq;
|
||
|
using AutoFixture;
|
||
|
|
||
|
namespace Bit.Test.Common.AutoFixture.Attributes
|
||
|
{
|
||
|
public class InlineSutAutoDataAttribute : InlineCustomAutoDataAttribute
|
||
|
{
|
||
|
public InlineSutAutoDataAttribute(params object[] values) : base(
|
||
|
new Type[] { typeof(SutProviderCustomization) }, values)
|
||
|
{ }
|
||
|
public InlineSutAutoDataAttribute(Type[] iCustomizationTypes, params object[] values) : base(
|
||
|
iCustomizationTypes.Append(typeof(SutProviderCustomization)).ToArray(), values)
|
||
|
{ }
|
||
|
|
||
|
public InlineSutAutoDataAttribute(ICustomization[] customizations, params object[] values) : base(
|
||
|
customizations.Append(new SutProviderCustomization()).ToArray(), values)
|
||
|
{ }
|
||
|
}
|
||
|
}
|