This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-toolbuilder-cil/tests/MfGames.ToolBuilder.Tests/ToolBuilderTestContext.cs

17 lines
375 B
C#
Raw Normal View History

2021-09-10 17:33:42 +00:00
using Autofac;
using MfGames.TestSetup;
namespace MfGames.ToolBuilder.Tests
{
public class ToolBuilderTestContext : TestContext
{
/// <inheritdoc />
protected override void ConfigureContainer(ContainerBuilder builder)
{
base.ConfigureContainer(builder);
builder.RegisterModule<ToolBuilderModule>();
}
}
}