Get information about all test reports
Return a JSON representation of all test reports.
Request
GET https://{hostname}:{port}
/build/rest2/projects/{id}/buildProcesses/{id}/buildLives/latest/tests
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | true | The identifier to use when looking up a project. This can be the name or ID of the project |
| id | string | true | The identifier to use when looking up a build process. This can be the name or ID of the process |
This command takes a JSON request string or file. Use the following template for the request:
{
"reports": [{
"failure": "The number of failures in the test report.",
"name": "The name of the test report.",
"success": "The number of successes in the test
report.",
"successPercent": "The success percent of the test
report.",
"suites": [{
"failure": "The number of failures in the test
suite.",
"name": "The name of the test suite.",
"success": "The number of successes in the test
suite.",
"successPercent": "The success percent of the test
suite."
}]
}],
"successPercent": "The success percent of all the test
reports."
}