...
Use the -help
command line switch:
Code Block |
---|
dottestcli.exe -help
|
How can I work with dotTEST via proxy?
...
To work with dotTESTwith dotTEST, ensure ensure that the system properties for the HTTPS protocol HTTPS protocol are configured. At a minimum, you must configure https.proxySet=true
, https.proxyHost=[hostname]
, and https.proxyPort=[port number]
. If your proxy server requires authentication, you can configure your credentials with the https.proxyUser
and https.proxyPassword
properties.
Your command line may resemble the following:
Code Block | |
---|---|
text | java -Dhttps.proxySet=true -Dhttps.proxyHost=myserver.example.com -Dhttps.proxyPort=8080 -Dhttps.proxyUser=user1 -Dhttps.proxyPassword=MyPassword |
In addition, you can configure the https.nonProxyHosts
property to specify hosts where connection via proxy is not required.The proxy mode is not supported for Visual Studio.
...
What if dotTEST cannot collect coverage information?
- Ensure that appropriate Portable PDB files are available when coverage is collected. Each analyzed assembly must have a corresponding PDB file generated during the same build.
- Some versions of .NET Core may have a bug that prevents dotTEST from collecting coverage data for .NET Core applications. To ensure that the application coverage is collected, copy the dottest.Hooks assembly shipped with dotTEST to the application folder where IIS is deployed. The assembly is shipped in [INSTALL DIR]/integration/iis/bin/dottest/dotnet.
...