Get information about all test reports
Return a JSON representation of all test reports.
Request
GET https://{hostname}:{port}
/build/rest2/build-lives//{id}/tests
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | true |
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."
}
