mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-29 12:45:20 +01:00
11 lines
321 B
C#
11 lines
321 B
C#
using AutoFixture.AutoNSubstitute;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes
|
|
{
|
|
public class InlineAutoSubstitutionData : InlineCustomAutoDataAttribute
|
|
{
|
|
public InlineAutoSubstitutionData(params object[] values) : base(new[] { typeof(AutoNSubstituteCustomization) }, values)
|
|
{ }
|
|
}
|
|
}
|