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?
|
feedback
|
|
Try:
| |||||
feedback
|
|
No, this link explains why. | |||||
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. | |||
|
feedback
|
|
I answered a similar question for Powershell. The same technique should work here, simply call the following at the start of your test:
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. | ||||
|
feedback
|