I have a web project which reads multiple configuration keys from web.config. These settings are related to the rules implemented in the project. When the unit test invokes the model classes in the web project it ends up reading the app.config from the unit test project. So I have to replicate the keys in app.config in the unit test project. Is it better to move the configuration information to an external file in the web project to avoid the copies of the configuration information?
Thanks in advance.