Reload app.config with nunit - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T20:40:15Zhttp://stackoverflow.com/feeds/question/949696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949696/reload-app-config-with-nunit3Reload app.config with nunitkarstenkousgaard2009-06-04T10:20:58Z2009-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#9498321Answer by crauscher for Reload app.config with nunitcrauscher2009-06-04T10:51:43Z2009-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#9499570Answer by Rune FS for Reload app.config with nunitRune FS2009-06-04T11:30:31Z2009-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#9502330Answer by Chris Ballard for Reload app.config with nunitChris Ballard2009-06-04T12:29:13Z2009-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#9543291Answer by yas for Reload app.config with nunityas2009-06-05T04:59:25Z2009-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>