public AuthenticationControllerIntegrationTests(InMemoryKIOTApiFactory <Startup> factory) { _factory = factory; _httpClient = _factory.CreateClient(); _factory.SeedDbContext(); _client = new Client("http://localhost:5000", _httpClient); }
public AccountsControllerIntegrationTests(InMemoryKIOTApiFactory <Startup> factory, ITestOutputHelper output) { _factory = factory; _httpClient = _factory.CreateClient(); _factory.SeedDbContext(); _client = new Client("http://localhost:5000", _httpClient); _output = output; }