You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
345 B
10 lines
345 B
using AutoFixture; |
|
using Bit.Test.Common.AutoFixture.JsonDocumentFixtures; |
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes; |
|
|
|
public class JsonDocumentCustomizeAttribute : BitCustomizeAttribute |
|
{ |
|
public string Json { get; set; } |
|
public override ICustomization GetCustomization() => new JsonDocumentCustomization() { Json = Json }; |
|
}
|
|
|