- 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
Requirements
Requirements module gathers the descriptions and expectations of all the functionalities which the final product must fulfill in order to be considered useful and ready for release.
How to set up links
Operation SET - generates an exact set of links indicated in the payload
{
"coveredTestCases": {
"set": [
{
"testKey": "{{TcTestKey2}}"
}
]
}
}
Operation ADD - adds links indicated in the payload
{
"coveredTestCases": {
"add": [
{
"testKey": "{{TcTestKey2}}"
}
]
}
}
Operation REMOVE - deletes links indicated in the payload
{
"coveredTestCases": {
"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.