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/src/tests/Recyclarr.Cli.Tests/AutoMapperConfigurationTest.cs

20 lines
598 B

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