mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
11 lines
301 B
C#
11 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());
|
|
}
|
|
}
|