1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 19:53:40 +00:00

Create common test infrastructure project

This commit is contained in:
Matt Gibson
2021-10-29 15:05:45 -04:00
parent dcc11e3819
commit 53b82d7d06
48 changed files with 210 additions and 202 deletions

View 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());
}
}