New to Telerik Test Studio? Download free 30-day trial

Override the app.config File in a Test Studio Project

I would like Visual Studio to load the app.config file to get its run-time configuration settings.

Solution

The app.config only applies to projects in Visual Studio as expained here.

The concept is that you can place application configuration settings in the app.config file (like user ID, connection strings, etc.) and have the application load this config file to get its run-time configuration settings. In Solution Explorer it will show as app.config. When you compile the project it gets renamed and placed in the projectFolder\bin\debug *or *projectFolder\bin\release folder alongside your application (.exe) file. So if your application file is named MySpecialApp.exe, next to it will be MySpecialApp.exe.config.

However, this doesn't work with a default Test Studio project. A Test Studio project builds to a DLL file. This DLL file is then executed by Test Studio's test runner. The reason that test project ignores the app.config file is because the test runner is the application and the test runner is going to load its own app.config file. It's going to ignore the app.config file that belongs to the DLL being tested. In order to work around this, you need to expressly write a coded step to find it, open it, read it and parse it. We have a sample below that demonstrates how this is done. In order to make this code work, Add an Assembly Reference to the following assemblies:

  • System.Reflection

  • System.Configuration

Assembly me = Assembly.GetExecutingAssembly();
Configuration config = ConfigurationManager.OpenExeConfiguration(me.ManifestModule.Assembly.Location);

string url = config.AppSettings.Settings["LoginPageUrl"].Value;
string name = config.AppSettings.Settings["LoginName"].Value;
string pw = config.AppSettings.Settings["Pass"].Value;
string UserId = config.AppSettings.Settings["UserId"].Value;
string conn = config.ConnectionStrings.ConnectionStrings["ConnectionString"].ConnectionString;
Dim [me] As Assembly = Assembly.GetExecutingAssembly()
Dim config As Configuration = ConfigurationManager.OpenExeConfiguration([me].ManifestModule.Assembly.Location)

Dim url As String = config.AppSettings.Settings("LoginPageUrl").Value
Dim name As String = config.AppSettings.Settings("LoginName").Value
Dim pw As String = config.AppSettings.Settings("Pass").Value
Dim UserId As String = config.AppSettings.Settings("UserId").Value
Dim conn As String = config.ConnectionStrings.ConnectionStrings("ConnectionString").ConnectionString
In this article