up vote 4 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

57% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Try:

/* 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);
        }
    }
}
link|improve this answer
This seems to work perfect. Would you be so kind to explain what it actually does? :-) – Karsten Jun 9 '09 at 15:22
This didn't work for me (using .NET 4.0). I had to extend it, please see my answer here: stackoverflow.com/questions/6150644/… – Daniel Hilgarth May 27 '11 at 11:37
feedback

No, this link explains why.

link|improve this answer
I believe the link explains why, you wouldn't want such a feature for the application it self. But I with my situation it would be useful – Karsten Jun 9 '09 at 15:24
I konw, I also wanted such a feature once (or twice, or... ;-)) – crauscher Jun 9 '09 at 15:34
feedback

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.

link|improve this answer
one project per test? – apollodude217 Jul 15 '10 at 20:08
feedback

I answered a similar question for Powershell. The same technique should work here, simply call the following at the start of your test:

System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", configPath)

EDIT: Actually looks like this is more complicated within a compiled exe - you need to do something like this in order to get the config reloaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.