Test Management

Add Test to Execution Set API

OVERVIEW

This REST API facilitates the user to add the Test Case(s) to the Execution Set.

Method: Post

Input: 

Authorization: Basic Auth token in the Request Headers 

Post body:

Users can add multiple test cases too

 

Purpose of Fields given in this API: 

Parameter Value Mandatory Description
VersionID String Yes the version of the Project
ExecutionSetID String Yes Enter the Execution set ID where the test case need to be added
TestCaseIds String Yes the Test Case Id(s) to be added to the Execution Set

Output:

Orcanos Output class:

{
    “IsSuccess”: true,
    “Data”: “”,
    “Message”: “Test case added to execution set successfully.”,
    “HttpCode”: 200
}

IsSuccess: if successful then true else false

Message: Error message in case Is Success is false

HttpCode: Response HttpCode

Related Articles