App page
Requirements and Test Management for Jira
Cloud Server/Data Center
Requirements and Test Management for Jira

Cloud

Server/Data Center

Documentation
FAQ
Release notes
Migration to Cloud
Last updated Mar 5, 2021

Defects

Defect can be defined as an error or bug that appears during the Test Execution. As a result of finding such bugs in Test Case Execution, a tester creates a defect. Defects are related to the whole Test Case and Test Execution.

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

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

Operation ADD - adds links indicated in the payload

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

Operation REMOVE - deletes links indicated in the payload

{
  "identifyingTestCases": {
    "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.