Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2023.1

...

SettingPurpose
application.coverage.enabled=true|false

Specifies whether application coverage is enabled or not.

Default: false

application.coverage.agent.url=[url]

Specifies URLs where the applications under test and coverage agents are hosted. Include the protocol (HTTP/HTTPS) and port. Separate multiple entries with a semi-colon ( ; ).

Example: http\://<AGENT_HOST>\:8050;http\://<AGENT_HOST>\:9050

application.coverage.user.id=[username]

Specifies a user ID so that coverage results can be associated with a specific user. A user ID should only be specified when the coverage agent is configured to run in multi-user mode.

See the DTP Engine documentation for details.

application.coverage.dtp.publish=true|false

Specifies whether coverage reports should be uploaded to DTP. If you have configured multiple coverage agents, their coverage reports will be merged into a single coverage report for DTP.

Defaults to the value of report.dtp.publish or to true if -publish is passed to soatestcli.

application.coverage.binaries=[file|URL] Specifies the URL or local file that contains binaries of the application under test (AUT). You can specify the path to a folder or a .war, .jar, .zip, or .ear file. Optional. Not needed if the static coverage file is uploaded to DTP separately. Do not use if application.coverage.static.file has been specified.
application.coverage.binaries.exclude=[pattern]Specifies a comma-separated pattern of binaries to exclude during AUT scanning. Optional. Analysis of binaries will take longer and analyze more of the application than needed if not used. Do not use if application.coverage.static.file has been specified. By default, all binaries are accepted.
application.coverage.binaries.include=[pattern]Specifies a comma-separated pattern of binaries to include during AUT scanning. Optional. Analysis of binaries will take longer and analyze more of the application than needed if not used. Do not use if application.coverage.static.file has been specified. By default, all binaries are accepted.
application.coverage.static.file=[file|URL]

Specifies the URL or local file of the static coverage file generated with dotTEST or Jtest in the .xml or .data format. Optional. Not needed if the static coverage file is uploaded to DTP separately. Do not use if application.coverage.binaries has been specified.

See Creating a Custom Test Configuration for more information.

Example: static_coverage.xml

application.coverage.images=$[dtp_project]

Specifies a set of tags that are used to create coverage images in DTP. A coverage image is a unique identifier for aggregating coverage data from runs with the same build ID. Separate multiple entries with a semi-colon ( ; ).

For details, see the Parasoft DTP user guide.

Example: ${dtp_project};${dtp_project}_Functional Test

application.coverage.runtime.dir=[directory]Specifies a directory to which to save a copy of the runtime coverage data. If no directory is specified, runtime coverage data is not saved after processing. Optional.
application.coverage.test.associations=true|false

Enables the storing of test associations with runtime coverage data. If set to false, runtime coverage data will only record which lines are covered, but not which test cases are covering which lines.

Default: true

...