mirror of
https://github.com/bitwarden/server.git
synced 2025-02-07 00:21:32 +01:00
12 lines
301 B
C#
12 lines
301 B
C#
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());
|
|
}
|
|
}
|