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

11 lines
263 B
C#
Raw Normal View History

2022-04-26 18:21:17 +03:00
using AutoFixture.AutoNSubstitute;
namespace Bit.Test.Common.AutoFixture.Attributes
{
public class AutoSubstitutionData : CustomAutoDataAttribute
{
public AutoSubstitutionData() : base(typeof(AutoNSubstituteCustomization))
{ }
}
}