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 9, 2020

Test Plan

Before the actual testing process starts, a Test Plan with all related Test Cases listed in it must be created by the team members. It means that Test Plans summarize all actions which must be done in order to check the functionality of a particular feature.

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

{
  "includedTestCases": {
    "set": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}

Operation ADD - adds links indicated in the payload

{
  "includedTestCases": {
    "add": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}

Operation REMOVE - deletes links indicated in the payload

{
  "includedTestCases": {
    "remove": [
      {
        "testKey": "{{TcTestKey2}}"
      }
    ]
  }
}
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.