13 lines
262 B
C#
13 lines
262 B
C#
using Autofac;
|
|
|
|
namespace e_suite.DependencyInjection.UnitTests;
|
|
|
|
public class TestRegistration : IIocRegistration
|
|
{
|
|
public static bool WasCalled;
|
|
|
|
public void RegisterTypes(ContainerBuilder builder)
|
|
{
|
|
WasCalled = true;
|
|
}
|
|
} |