public HealthCheckTests(MockWebApplicationFactory <Startup> factory)
        {
            _factory = factory;
            var client = _factory.CreateClient();

            _steps = new HealthCheckSteps(client);
        }
예제 #2
0
 public HealthCheckTests(MockWebApplicationFactory <Startup> appFactory)
 {
     _steps = new HealthCheckSteps(appFactory.Client);
 }
예제 #3
0
 public HeathCheck()
 {
     steps = new HealthCheckSteps();
 }
예제 #4
0
 public HealthCheckTests(DynamoDbIntegrationTests <Startup> dbFixture)
 {
     _dbFixture = dbFixture;
     _steps     = new HealthCheckSteps(_dbFixture.Client);
 }