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.
18 lines
542 B
18 lines
542 B
using AutoMapper;
|
|
|
|
namespace Recyclarr.Cli.IntegrationTests;
|
|
|
|
[TestFixture]
|
|
internal class AutoMapperConfigurationTest : CliIntegrationFixture
|
|
{
|
|
[Test]
|
|
public void Automapper_config_is_valid()
|
|
{
|
|
var mapper = Resolve<MapperConfiguration>();
|
|
// Build an execution plan like:
|
|
// var plan = mapper.BuildExecutionPlan(typeof(QualityProfileConfigYaml), typeof(QualityProfileConfig));
|
|
// And do `plan.ToReadableString()` in the Debug Expressions/Watch
|
|
mapper.AssertConfigurationIsValid();
|
|
}
|
|
}
|