mirror of
https://github.com/bitwarden/server.git
synced 2025-01-06 19:28:08 +01:00
13 lines
356 B
C#
13 lines
356 B
C#
|
using Bit.Core.Test.AutoFixture.Attributes;
|
|||
|
using Bit.Core.Test.AutoFixture.OrganizationFixtures;
|
|||
|
|
|||
|
namespace Bit.Core.Test.AutoFixture
|
|||
|
{
|
|||
|
|
|||
|
internal class CollectionAutoDataAttribute : CustomAutoDataAttribute
|
|||
|
{
|
|||
|
public CollectionAutoDataAttribute() : base(new SutProviderCustomization(), new Organization())
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|