mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
33 lines
866 B
C#
33 lines
866 B
C#
|
using System;
|
|||
|
using AutoFixture;
|
|||
|
using AutoFixture.Kernel;
|
|||
|
|
|||
|
namespace Bit.Test.Common.AutoFixture
|
|||
|
{
|
|||
|
public class SutProviderCustomization : ICustomization, ISpecimenBuilder
|
|||
|
{
|
|||
|
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)).Create();
|
|||
|
}
|
|||
|
|
|||
|
public void Customize(IFixture fixture)
|
|||
|
{
|
|||
|
fixture.Customizations.Add(this);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|