public ComponentTestFixture() { TestConfig = new ConfigurationBuilder() .AddJsonFile("appsettings.json", false, true) .AddEnvironmentVariables() .Build() .GetSection("ComponentTests") .Get <ComponentTestConfig>(); }
public ValuesControllerTests(ComponentTestFixture fixture) { _testConfig = fixture.TestConfig; }