Apps documentation
Requirements and Test Management for Jira
Cloud Server/Data Center
Requirements and Test Management for Jira

Cloud

Server/Data Center

Documentation
FAQ
Release notes
Articles & Videos
Last updated Nov 27, 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
Starting from RTM 6.0 version, we recommend you to use V2 API. We still support V1 API in older RTM releases.

V2 API