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
389 B
18 lines
389 B
using AutoMapper;
|
|
using NUnit.Framework;
|
|
using Recyclarr.Cli.TestLibrary;
|
|
|
|
namespace Recyclarr.Cli.Tests;
|
|
|
|
[TestFixture]
|
|
[Parallelizable(ParallelScope.All)]
|
|
public class AutoMapperConfigurationTest : IntegrationFixture
|
|
{
|
|
[Test]
|
|
public void Automapper_config_is_valid()
|
|
{
|
|
var mapper = Resolve<MapperConfiguration>();
|
|
mapper.AssertConfigurationIsValid();
|
|
}
|
|
}
|