Reload app.config with nunit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T20:40:15Z http://stackoverflow.com/feeds/question/949696 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949696/reload-app-config-with-nunit 3 Reload app.config with nunit karstenkousgaard 2009-06-04T10:20:58Z 2009-06-05T10:00:42Z <p>Hi</p> <p>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?</p> http://stackoverflow.com/questions/949696/reload-app-config-with-nunit/949832#949832 1 Answer by crauscher for Reload app.config with nunit crauscher 2009-06-04T10:51:43Z 2009-06-04T10:51:43Z <p>No, <a href="http://blogs.msdn.com/junfeng/archive/2005/02/20/376880.aspx" rel="nofollow">this link</a> explains why.</p> http://stackoverflow.com/questions/949696/reload-app-config-with-nunit/949957#949957 0 Answer by Rune FS for Reload app.config with nunit Rune FS 2009-06-04T11:30:31Z 2009-06-04T11:30:31Z <p>If you issue is that you for different sets of test cases needs to have different configurations you can have different test projects with a configuration file for each. Then run your test projects one at a time.</p> http://stackoverflow.com/questions/949696/reload-app-config-with-nunit/950233#950233 0 Answer by Chris Ballard for Reload app.config with nunit Chris Ballard 2009-06-04T12:29:13Z 2009-06-04T12:57:28Z <p>I <a href="http://stackoverflow.com/questions/835862/powershell-calling-net-assembly-that-uses-app-config/835984#835984">answered a similar question</a> for Powershell. The same technique should work here, simply call the following at the start of your test:</p> <p><code>System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", configPath)</code></p> <p>EDIT: Actually looks like this is more complicated within a compiled exe - you need to do <a href="http://www.codeproject.com/KB/dotnet/dllappconfig.aspx" rel="nofollow">something like this</a> in order to get the config reloaded.</p> http://stackoverflow.com/questions/949696/reload-app-config-with-nunit/954329#954329 1 Answer by yas for Reload app.config with nunit yas 2009-06-05T04:59:25Z 2009-06-05T10:00:42Z <p>Try:</p> <pre><code>/* 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); this.disposedValue = true; } GC.SuppressFinalize(this); } } } </code></pre>