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