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
Dylan R. E. Moonfire ad0525be04 feat: initial commit
2021-09-10 12:33:42 -05:00

17 lines
375 B
C#

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>();
}
}
}