mfgames-cil/tests/MfGames.ToolBuilder.Tests/ToolBuilderTestContext.cs

18 lines
400 B
C#
Raw Normal View History

2021-09-10 17:33:42 +00:00
using Autofac;
using MfGames.TestSetup;
2022-04-02 23:52:44 +00:00
using MfGames.ToolBuilder.Tables;
2021-09-10 17:33:42 +00:00
2023-07-22 18:36:30 +00:00
namespace MfGames.ToolBuilder.Tests;
public class ToolBuilderTestContext : TestContext
2021-09-10 17:33:42 +00:00
{
2023-07-22 18:36:30 +00:00
/// <inheritdoc />
protected override void ConfigureContainer(ContainerBuilder builder)
{
base.ConfigureContainer(builder);
builder.RegisterModule<ToolBuilderModule>();
builder.RegisterModule<ToolBuilderTablesModule>();
}
2021-09-10 17:33:42 +00:00
}