Hello -
We have a solution that comprises several projects. I came on not too long ago, and started adding functionality to one of the projects. We are using the Enterprise Library 3.1 Logging Application Block for logging.
We have been talking about Unit Testing (who hasn't) but haven't tried to add it until today. I decided to use the test framework built into Visual Studio 2008, rather than installing something else. Once I got past the Strong Name issues so everything would compile, I get the following error when I try to run it:
ConfigurationErrorsException was unhandled. The configuration section for Logging cannot be found in the configuration source.
Obviously, the Logging section is still present in the app.config file for the project under test, so what is needed? There is no executable in the test project, so what config file do I need to be looking for?
Thanks, Dave