public UserTest(TestServerFixture <Startup> fixture)
        {
            _fixture = fixture;

            _fixture.ConfigureServices += (_, services) =>
            {
                services.AddAntiCorruptionLayer();
            };

            _userService = new UserService(_fixture.Resolve <IMapper>(), new UserRepository(_fixture.BuildInMemoryDbContext()));
        }