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.
15 lines
439 B
15 lines
439 B
2 years ago
|
using Autofac;
|
||
1 year ago
|
using Recyclarr.IntegrationTests;
|
||
2 years ago
|
|
||
1 year ago
|
namespace Recyclarr.Cli.IntegrationTests;
|
||
2 years ago
|
|
||
1 year ago
|
internal abstract class CliIntegrationFixture : IntegrationTestFixture
|
||
2 years ago
|
{
|
||
|
protected override void RegisterTypes(ContainerBuilder builder)
|
||
|
{
|
||
1 year ago
|
// Do NOT invoke the base method here!
|
||
|
// We are deliberately REPLACING those registrations (the composition root here is a SUPERSET).
|
||
2 years ago
|
CompositionRoot.Setup(builder);
|
||
|
}
|
||
|
}
|