1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-01-16 21:03:55 +03:00
bitwarden-android/test/Common/AutoFixture/Attributes/InlineAutoSubDataAttribute.cs

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

11 lines
321 B
C#
Raw Normal View History

using AutoFixture.AutoNSubstitute;
namespace Bit.Test.Common.AutoFixture.Attributes
{
public class InlineAutoSubstitutionData : InlineCustomAutoDataAttribute
{
public InlineAutoSubstitutionData(params object[] values) : base(new[] { typeof(AutoNSubstituteCustomization) }, values)
{ }
}
}