- 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 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
How to set up links
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.