...
true | Default. The parameter details are included in the report. |
---|---|
false | The parameter details are not included in the report. |
report.testcases_details
This setting enables or disables including details about specific Google Test assertion failures in the HTML report.
Acceptable Values
...
Google Test assertion failures are included in the report.
...
Google Test assertion failures are not included in the report.
...
Example Usage
The following configuration enables showing Google Test Assertion failures:
report.testcases_details=true
Related
session.tag
This setting specifies a tag for signing results from the test session. The tag is a unique identifier for the specified analysis process made on a specified module. Reports for different test sessions should be marked with different session tags.
You can create a tag using a string of characters, as well as the variables (see Using Variables).
Acceptable Values
[tag name] | A unique tag that identifies results from different sessions. The default is ${scontrol_branch}-${exec_env} . |
---|
Example Usage
The default session tag includes variables that specify the source control branch name and the execution environment. For example, if source control integration is not configured, and the test session is performed on a 64-bit Windows, the report will include a session tag that may look as follows: ${scontrol_branch}-win32_x86_64.
...