Im doing Unit tests for a big big project with so many things to test. My Project has 10 different modules.
Originally, I have my App.config
where I have defined the path and the name of my ModuleConfiguration.xml
and much more stuff... In this file, I have all the labels and values I use for these tests.
Until now, all OK.
But My ModuleConfiguration
is getting really really big, so I decide to split up and have one ConfigurationFile.xml
for every module...
So for example:
- ModemModule:
ModemConfiguration.xml
- HelperModule:
HelperConfiguration.xml
- and so on...
But then I would need one App.config
for every different configurationFile as well...
So, my question is how I can use multiple App.config
files in my proyect...
Thanks for the help in advance!