I'm testing a class library with a separate Nunit test project, which is another class library. The unit tests are run by resharper, but the problem is, the class library is expecting to get configuration values from app.config.
When NUnit project is a class library, then there is no place to put app.config so that the class library can access the values in it.
If the NUnit project was an executable, it'd host the app.config, but that is not what is suggested according to questions and answers on SO
What should I do?