You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
939 B
36 lines
939 B
// FIXME: Update this file to be null safe and then delete the line below |
|
#nullable disable |
|
|
|
using AutoFixture; |
|
using AutoFixture.Kernel; |
|
|
|
namespace Bit.Test.Common.AutoFixture.Attributes; |
|
|
|
public class SutProviderCustomization : ICustomization, ISpecimenBuilder |
|
{ |
|
private IFixture _fixture = null; |
|
|
|
public object Create(object request, ISpecimenContext context) |
|
{ |
|
if (context == null) |
|
{ |
|
throw new ArgumentNullException(nameof(context)); |
|
} |
|
if (!(request is Type typeRequest)) |
|
{ |
|
return new NoSpecimen(); |
|
} |
|
if (!typeof(ISutProvider).IsAssignableFrom(typeRequest)) |
|
{ |
|
return new NoSpecimen(); |
|
} |
|
|
|
return ((ISutProvider)Activator.CreateInstance(typeRequest, _fixture)).Create(); |
|
} |
|
|
|
public void Customize(IFixture fixture) |
|
{ |
|
_fixture = fixture; |
|
fixture.Customizations.Add(this); |
|
} |
|
}
|
|
|