mirror of
https://github.com/bitwarden/server
synced 2025-12-13 14:53:34 +00:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
15 lines
498 B
C#
15 lines
498 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());
|
|
|
|
public static IFixture WithAutoNSubstitutionsAutoPopulatedProperties(this IFixture fixture)
|
|
=> fixture.Customize(new AutoNSubstituteCustomization { ConfigureMembers = true });
|
|
}
|
|
}
|