mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
10 lines
263 B
C#
10 lines
263 B
C#
using AutoFixture.AutoNSubstitute;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes
|
|
{
|
|
public class AutoSubstitutionData : CustomAutoDataAttribute
|
|
{
|
|
public AutoSubstitutionData() : base(typeof(AutoNSubstituteCustomization))
|
|
{ }
|
|
}
|
|
}
|