I'm storing my application settings in my web.config file and accessing them using ConfigurationManager.GetSection or ConfigurationManager.AppSettings. I've created a test to ensure that the settings I'm getting from my class are the correct settings in the web.config file, however, it's returning null values. How can I tell my unit test that the class library should be using the web.config file for it's configuration rather than the app.config file that accompanies the class library? In this case since I'm generating a quick test, I'm using the built-in VS Unit test library.
|
feedback
|
|
Pretty lengthy but try this:
I then created a "helper" class that looks like this:
Now, from anywhere in code I can call Sol3.AppSettings.Info_Server and it gets that info from the web.config. This is all done in a DLL project and has been working for us for quite awhile now. The GetSetupConfig() is key as this is how it knows to get the web.config file... HTH | |||||
feedback
|
|
I was able to add the app.config file to the Tests application to get my issue resolved. | |||
feedback
|
|
In your app.config file, you could add the "file" attribute to your appSettings element: <appSettings file="d:\mydir\web.config"> I'm not endorsing this as a best practice but it will cause your app.config to inherit the appsettings of your web.config. | |||||||
feedback
|