mirror of
https://github.com/bitwarden/server.git
synced 2026-02-17 22:33:28 +08: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));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|