Affecto.PositiveFeedback.EmployeeSynchronization.ActiveDirectory.Tests.EmployeeRepositoryTests.Setup C# (CSharp) Method

Setup() private method

private Setup ( ) : void
return void
        public void Setup()
        {
            configuration = Substitute.For<IConfiguration>();
            activeDirectoryService = Substitute.For<IActiveDirectoryService>();
            principalMapper = Substitute.For<IMapper<IPrincipal, Employee>>();
            sut = new EmployeeRepository(activeDirectoryService, configuration, principalMapper);
        }