bitwarden-android/test/Common/AutoFixture/Attributes/AutoSubDataAttribute.cs

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

11 lines
263 B
C#
Raw Normal View History

using AutoFixture.AutoNSubstitute;
namespace Bit.Test.Common.AutoFixture.Attributes
{
public class AutoSubstitutionData : CustomAutoDataAttribute
{
public AutoSubstitutionData() : base(typeof(AutoNSubstituteCustomization))
{ }
}
}