retroactiune/Retroactiune.UnitTests/Retroactiune.WebAPI/TestUtils.cs

17 lines
407 B
C#
Raw Normal View History

using AutoMapper;
namespace Retroactiune.Tests.Retroactiune.WebAPI
{
public static class TestUtils
{
public static IMapper GetMapper()
{
var configuration = new MapperConfiguration(cfg =>
{
cfg.AddProfile<MappingProfile>();
});
var mapper = configuration.CreateMapper();
return mapper;
}
}
}