mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
23 lines
634 B
C#
23 lines
634 B
C#
using AutoFixture;
|
|
using AutoFixture.Xunit2;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
public class CustomAutoDataAttribute : AutoDataAttribute
|
|
{
|
|
public CustomAutoDataAttribute(params Type[] iCustomizationTypes) : this(iCustomizationTypes
|
|
.Select(t => (ICustomization)Activator.CreateInstance(t)).ToArray())
|
|
{ }
|
|
|
|
public CustomAutoDataAttribute(params ICustomization[] customizations) : base(() =>
|
|
{
|
|
var fixture = new Fixture();
|
|
foreach (var customization in customizations)
|
|
{
|
|
fixture.Customize(customization);
|
|
}
|
|
return fixture;
|
|
})
|
|
{ }
|
|
}
|