1
0
Fork 0
mirror of https://github.com/bitwarden/android.git synced 2025-01-16 04:50:59 +03:00
bitwarden-android/test/Common/AutoFixture/FixtureExtensions.cs

12 lines
301 B
C#
Raw Normal View History

2022-04-26 18:21:17 +03:00
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());
}
}