Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Using http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype/10001, we receive back a JSON response ofwith one Test Type object:

Code Block
languagejs
themeEclipse
titleTest types
{
    "testTypeName": "Unit Test",
    "testTypeId": 10001
}

Using http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype?testTypeName=Functional we receive back a JSON response ofresponse with a list of all the Test Types containing the passed name:

Code Block
languagejs
themeEclipse
titleTest types
[
	{
    	"testTypeName": "Functional Test",
    	"testTypeId": 10002
	}
]

...