mirror of
https://github.com/bitwarden/server.git
synced 2024-12-11 15:17:44 +01:00
18 lines
498 B
C#
18 lines
498 B
C#
|
using System;
|
||
|
using AutoFixture;
|
||
|
using Bit.Test.Common.AutoFixture.Attributes;
|
||
|
|
||
|
namespace Bit.Api.Test.AutoFixture.Attributes
|
||
|
{
|
||
|
public class ControllerCustomizeAttribute : BitCustomizeAttribute
|
||
|
{
|
||
|
private readonly Type _controllerType;
|
||
|
public ControllerCustomizeAttribute(Type controllerType)
|
||
|
{
|
||
|
_controllerType = controllerType;
|
||
|
}
|
||
|
|
||
|
public override ICustomization GetCustomization() => new ControllerCustomization(_controllerType);
|
||
|
}
|
||
|
}
|