I'm using Unity for dependency Injection. This seems to help when I'm testing my objects because I can mock out all dependencies. However, how am I supposed to test that my configuration is valid?
For example, I change the Unity configuration in the app.config, and of course, the project will build fine. My tests are currently only testing my objects, so they still work. But how can I be sure that the configuration isn't broken?