logoBack to App page
Requirements and Test Management for Jira
Cloud Data Center
Documentation
FAQ
Release notes
Migration to Cloud
Requirements and Test Management for Jira
Cloud Data Center
Documentation
FAQ
Release notes
Migration to Cloud
Last updated Nov 9, 2020

Test Case

Test Case is a step-by-step procedure, where the testing path is defined. Test Case determines activities that should be taken to cover Requirement. Each Test Case is only a template before it’s executed by the testers.

Note

While referring to a Test Case, Test Plan and Test Execution, make sure you properly defined their names:
TEST_CASES
TEST_PLANS
TEST_EXECUTIONS

Operation SET - generates an exact set of links indicated in the payload

{
  "coveredRequirements": {
    "set": [
      {
        "testKey": "{{ReqTestKey2}}"
      }
    ]
  }
}

Operation ADD - adds links indicated in the payload

{
  "coveredRequirements": {
    "add": [
      {
        "testKey": "{{ReqTestKey2}}"
      }
    ]
  }
}

Operation REMOVE - deletes links indicated in the payload

{
  "coveredRequirements": {
    "remove": [
      {
        "testKey": "{{ReqTestKey2}}"
      }
    ]
  }
}
Note

In case of leaving the SET/ADD/REMOVE playload empty, the set operation will be applied. It means that:

  • links which are not defined in the new playload will be removed
  • existing links will stay the same
  • new links will be added.

V1 API

Note
We recommend you to use V2 instead of V1 API. We’re going to stop supporting V1 in the future.

V2 API