namespace OptionStudy.Next { /// /// Chained 配置源 /// public class ChainedConfigurationSourceTest: IDisposable { private readonly ITestOutputHelper testOutput; public ChainedConfigurationSourceTest(ITestOutputHelper testOutputHelper) { this.testOutput = testOutputHelper; } /// /// 使用 Chained配置源 /// [Fact] public void Use_Test() { testOutput.WriteLine("使用 Chained 配置源!"); } public void Dispose() { } } }