刷新的app.config与NUnit的app、config、NUnit

2023-09-04 00:31:54 作者:小糖果i

我有多个NUnit的测试,我想每个测试使用特定的app.config文件。 有没有办法在每次测试之前重置配置到一个新的配置文件?

I have multiple NUnit tests, and I would like each test to use a specific app.config file. Is there a way to reset the configuration to a new config file before each test?

推荐答案

尝试:

/* Usage
 * using(AppConfig.Change("my.config")) {
 *   // do something...
 * }
 */
public abstract class AppConfig : IDisposable
{
    public static AppConfig Change(string path)
    {
        return new ChangeAppConfig(path);
    }
    public abstract void Dispose();

    private class ChangeAppConfig : AppConfig
    {
        private bool disposedValue = false;
        private string oldConfig = Conversions.ToString(AppDomain.CurrentDomain.GetData("APP_CONFIG_FILE"));

        public ChangeAppConfig(string path)
        {
            AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", path);
            typeof(ConfigurationManager).GetField("s_initState", BindingFlags.NonPublic | BindingFlags.Static).SetValue(null, 0);
        }

        public override void Dispose()
        {
            if (!this.disposedValue)
            {
                AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", this.oldConfig);
            typeof(ConfigurationManager).GetField("s_initState", BindingFlags.NonPublic | BindingFlags.Static).SetValue(null, 0);
                this.disposedValue = true;
            }
            GC.SuppressFinalize(this);
        }
    }
}