mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
20 lines
704 B
C#
20 lines
704 B
C#
using Bit.Core.Test.AutoFixture.OrganizationFixtures;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
namespace Bit.Core.Test.AutoFixture.GroupFixtures
|
|
{
|
|
internal class GroupOrganizationAutoDataAttribute : CustomAutoDataAttribute
|
|
{
|
|
public GroupOrganizationAutoDataAttribute() : base(
|
|
new SutProviderCustomization(), new OrganizationCustomization { UseGroups = true })
|
|
{ }
|
|
}
|
|
|
|
internal class GroupOrganizationNotUseGroupsAutoDataAttribute : CustomAutoDataAttribute
|
|
{
|
|
public GroupOrganizationNotUseGroupsAutoDataAttribute() : base(
|
|
new SutProviderCustomization(), new OrganizationCustomization { UseGroups = false })
|
|
{ }
|
|
}
|
|
}
|