In this section:
This setting determines the amount of detail output to the console during analysis.
low | Errors and basic information about the current steps and status (done, failed, up-to-date) are shown. |
---|---|
normal | Default. Shows the same information as the low setting, but also includes command lines executed and issues reported during test and analysis. |
high | Shows the same information as normal, but also includes warnings. |
The following configuration outputs the most detail about the execution:
console.verbosity.level=high
This setting disables/ enables build of the tested solution or projects. If enabled, the building phase is skipped during analysis.
true | The building phase will be skipped during analysis. |
---|---|
false | Default. The tested solution or project will be built. |
The following configuration disables building of the project/solution:
dottest.build.nobuild=true
This setting specifies which builder will be used to build solutions and projects before they are analyzed by dotTEST.
dotnet | Solutions and projects will be built with .NET SDK. |
---|---|
msbuild | Solutions and projects will be built with MSBuild. |
visualstudio | Solutions and projects will be built with Visual Studio. |
The following configuration specifies that MSBuild will be used to build solutions and projects before the analysis.
dottest.build.builder_id=msbuild
This setting specifies the path to the .NET SDK executable.
[path] | The path to the dotnet.exe on your system. |
---|
dottest.build.dotnet_path=C\:\\dotnet\\dotnet.exe
This setting specifies the solution configuration.
[solution configuration] | The name of the solution configuration. |
---|
The following configuration specifies that the solution configuration is "Release":
dottest.build.solution_config=Release
This setting specifies the timeout value for restoring packages before the building phase.
[time in seconds] | The timeout for restoring packages. The default value is 360 . |
---|
This setting enables or disables returning the 0x40
exit code, which indicates that setup problems were reported when the process failed.
true | The process will exit with 0x40 if setup problems are reported. |
---|---|
false | Default. The process will never exit with the 0x40 . |
This setting specifies how file encoding is determined.
default | Enables use of system properties. |
---|---|
auto | Enables automatic detection of encoding for the Far-East languages specified with the file.encoding.lang property. |
user | Enables use of specified encoding by the file.encoding.name property. |
The following configuration enables file encoding based on the system settings:
file.encoding.mode=default
This setting allows you to specify the language that will be automatically detected for file encoding. It requires the file.encoding.mode
property to be set to auto
.
1 | Japanese |
---|---|
2 | Chinese |
3 | Simplified Chinese |
4 | Traditional Chinese |
5 | Korean |
The following configuration enables Japanese encoding:
file.encoding.mode=auto
file.encoding.lang=1
This setting allows you to configure file encoding other than specified in the system settings. It requires the file.encoding.mode
property to be set to user
.
[encoding name] | The name of the encoding, for example ASCII-US, UTF-8, UTF-16, UTF-16LE, UTF-16BE. |
---|
The following configuration enables encoding in UTF-16.
file.encoding.mode=user
file.encoding.name=UTF-16
This setting specifies where analysis-related data should be stored (temporary data, data caches etc.)
[path] | The path to the folder where the data will be saved. |
---|
The following configuration stores the data in the temp
folder:
local.storage.dir=C:\\parasoft\\temp
This determines which parallel processing mode is used. You may want to configure this setting to optimize testing and analysis execution according to your build schedule in CI environments.
disabled | Only one of the available CPUs |
---|---|
auto | Default. Allows the tool to control parallel processing settings. |
manual | Allows you to manually configure parallel processing settings to suit your specific needs. |
The following configuration disables parallel processing.
parallel.mode=disabled
This setting enables/disables additional limits on the memory consumed by parallel processing.
true | There will be no additional limits on the memory consumed by parallel processing. |
---|---|
false | Default. Memory consumption associated with parallel processing will be limited. |
The following configuration allows for unlimited memory consumption by parallel processes (within system limits).
parallel.no_memory_limit=true
This setting specifies the amount of memory that should be kept free in low memory conditions to ensure that free memory is available for other processes.
[percentage] | The percentage of the total memory available for the application. The default is |
---|
The following configuration ensures that 30% of the total memory of the application will be available for other processes.
parallel.free_memory_limit=30
This setting specifies the maximum number of parallel threads that can be executed simultaneously. The actual number of parallel threads is determined by the number of CPUs, available memory, and license settings.
[number] | The maximum number of simultaneously executed parallel threads. The default value is equal to the number of CPUs. |
---|
The following configuration allows you to simultaneously execute two parallel threads:
parallel.max_threads=2
This setting specifies a custom user name that will be associated with Parasoft artifacts, such as findings and data sent to DTP.
[name] | A custom user name. |
---|
The following configuration overrides the local user name configured in your system with a custom name "T12":
parasoft.user=T12
This setting enables or disables collecting anonymous usage information and sending it to Parasoft. Read our privacy statement to learn more at https://www.parasoft.com/privacy-policy.
true | Usage data is sent to Parasoft. |
---|---|
false | Default. Usage data is not sent to Parasoft. |
The following configuration enables collecting usage data.
usage.reporting.enabled=true