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.
recyclarr/tests/Recyclarr.Cli.IntegrationTests/AutoMapperConfigurationTest.cs

19 lines
578 B

using AutoMapper;
namespace Recyclarr.Cli.IntegrationTests;
[TestFixture]
[Parallelizable(ParallelScope.All)]
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();
}
}