- Reports
- Create report
- Saved Reports
- REST API
- REST API
- Authentication
- Test Key
- Jira REST API
- Requirements
- Test Case
- Test Plan
- Test Execution
- Test Case Execution
- Defects
- Tree Structure
- Example of use
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.
How to set up links
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.