mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
19 lines
654 B
C#
19 lines
654 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 })
|
|
{ }
|
|
}
|