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.TestLibrary/CliIntegrationFixture.cs

16 lines
490 B

using Autofac;
using Recyclarr.TrashLib.TestLibrary;
namespace Recyclarr.Cli.TestLibrary;
[FixtureLifeCycle(LifeCycle.InstancePerTestCase)]
public abstract class CliIntegrationFixture : TrashLibIntegrationFixture
{
protected override void RegisterTypes(ContainerBuilder builder)
{
// Do NOT invoke the base method here!
// We are deliberately REPLACING those registrations (the composition root here is a SUPERSET).
CompositionRoot.Setup(builder);
}
}