Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The following JQL functions are offered for synapseRT related searches in your JQL query.

...

ID
Usage
Description
1issue in hasRequirements()

Searches Test Cases those have Requirements associated

2issue in hasRequirements('issueKey1','issueKey2')Searches Test Cases those have specified Requirements associated
3issue not in hasRequirements() and type = 'Test Case'Searches Test Cases those have no Requirement associated
4

project = <projectKey> AND issue in hasRequirements('project = <projectKey> AND component = "<Component Name>"')

Note: The outer quote should be a single quote ' , otherwise it will return syntax error.

Searches Test Cases those are associated to a set of Requirements, those Requirements are returned

by nested function (project = projectName AND component = "Component Name")

...

ID
Usage
Description
1issue in testPlanMembers("issueKey")Searches the Test Cases associated with the given Test Plan Key issueKey
2issue in testPlanMembers("issueKey","Result")Searches the Test Cases associated with the given Test Plan and with the given execution result
3issue not in testPlanMembers("issueKey")Searches the Test Cases those are not present in given Test Plan.
4

issue in testPlanMembers('project = <projectKey> AND component = "<Component Name">')

Note: The outer quote should be a single quote ' , otherwise it will return syntax error.

Searches Test Cases those are associated to a set of Test Plans, those Test Plans are returned by nested function ('project = <projectKey> AND component = "<Component Name">')
5

issue in testPlanMembers('project = <projectKey> AND component = "<Component Name">','Result')

Note: The outer quote should be a single quote ' , otherwise it will return syntax error.

Searches the Test Cases associated with a set Test Plans and with the given execution result, those Test Plans are returned by nested function ('project = <projectKey> AND component = "<Component Name">')

...