List Tests and Series
This Eggplant Performance Test Controller REST method gets a list of the available tests and series within a specified project.
URL
/test_controller/api/1.0/<workspace>/<project>
HTTP Method
GET: Gets a list of the available tests and series within the specified project
Response Parameters
Parameter | Type | Description |
---|---|---|
series | Object | The name and details of all series. |
tests | Object | The name and URL of all the available tests. |
Example Request
http:/test_controller/api/1.0/Demo%20Workspace/Demo
Example Response
{
"series": {
"Default Series": {
"lastRun": "2016-09-17T06:37:45.244040",
"nextRunNumber": 2,
"name": "Default Series"
}
},
"tests": {
"demoScript": "/test_controller/api/1.0/Demo%20Workspace/Demo/demoScript"
}
}