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

15 lines
378 B

using Autofac;
using Recyclarr.TestLibrary;
namespace Recyclarr.Json.TestLibrary;
[FixtureLifeCycle(LifeCycle.InstancePerTestCase)]
public abstract class JsonIntegrationFixture : IntegrationTestFixture
{
protected override void RegisterTypes(ContainerBuilder builder)
{
base.RegisterTypes(builder);
builder.RegisterModule<JsonAutofacModule>();
}
}