You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
657 B
C#

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