...
You can also create a custom .properties file and pass it to the dottestcli
with the -settings
switch. You can use the -settings
switch multiple times to specify several .properties files. Entries with the same key will be overwritten.
Code Block |
---|
dottestcli.exe -solution "C:\Devel\FooSolution\FooSolution.sln" -settings "C:\Devel\Settings\dtp_server.properties" -settings "C:\Devel\Settings\email_server.properties" |
Info | ||
---|---|---|
| ||
Use double backslashes to specify file paths in the .properties file on Windows. For example:
|
Info | ||
---|---|---|
| ||
We highly recommend that you use encoded passwords to ensure successful authentication and increase the level of security; see Creating an Encoded Password. |
Settings Hierarchy
General settings are applied in the following order:
[INSTALL_DIR]/etc/dottestcli.properties
: the base configuration file that should not be modified.[INSTALL_DIR]/dottestcli.properties
: the main configuration file you can use to specify your settings; it contains a list of basic configuration settings (license, reporting, etc.) you need to uncomment before configuring the setting's value.[USER_HOME_DIR]/dottestcli.properties
: for your convenience, you can store the configuration file in your home directory (%USERPROFILE% directory) to overwrite settings from the [INSTALL_DIR] (for example, to ensure your settings are not affected by re-installations or updates).[WORKING_DIR]/dottestcli.properties
: for your convenience, you can store the configuration file in your working directory.- Custom settings passed with the command line switch
-settings path/to/settings.properties
(e.g.,-settings "../settings.properties"
). - Custom settings passed with the command line switch
-property [key=value]
(e.g.-property "report.mail.enabled=true"
).
All of the above settings can be overridden by settings that are passed with command line switches, such as -report
, -config
, etc.If you have dotTest 9.5 or later, settings can be prepared in Visual Studio and exported to a *.properties file.
Viewing Current Settings
...