mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
Create common test infrastructure project
This commit is contained in:
11
test/Common/AutoFixture/FixtureExtensions.cs
Normal file
11
test/Common/AutoFixture/FixtureExtensions.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using AutoFixture;
|
||||
using AutoFixture.AutoNSubstitute;
|
||||
|
||||
namespace Bit.Test.Common.AutoFixture
|
||||
{
|
||||
public static class FixtureExtensions
|
||||
{
|
||||
public static IFixture WithAutoNSubstitutions(this IFixture fixture)
|
||||
=> fixture.Customize(new AutoNSubstituteCustomization());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user