mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
17 lines
450 B
C#
17 lines
450 B
C#
|
using AutoFixture;
|
|||
|
|
|||
|
namespace Bit.Core.Test.AutoFixture
|
|||
|
{
|
|||
|
internal class GlobalSettings : ICustomization
|
|||
|
{
|
|||
|
public void Customize(IFixture fixture)
|
|||
|
{
|
|||
|
fixture.Customize<Settings.GlobalSettings>(composer => composer
|
|||
|
.Without(s => s.BaseServiceUri)
|
|||
|
.Without(s => s.Attachment)
|
|||
|
.Without(s => s.Send)
|
|||
|
.Without(s => s.DataProtection));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|