mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
12 lines
296 B
C#
12 lines
296 B
C#
|
|
using AutoFixture;
|
||
|
|
using AutoFixture.AutoNSubstitute;
|
||
|
|
|
||
|
|
namespace Bit.Core.Test.AutoFixture
|
||
|
|
{
|
||
|
|
public static class FixtureExtensions
|
||
|
|
{
|
||
|
|
public static IFixture WithAutoNSubstitutions(this IFixture fixture)
|
||
|
|
=> fixture.Customize(new AutoNSubstituteCustomization());
|
||
|
|
}
|
||
|
|
}
|