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.

...

Please note that nested functions are supported in this JQL.

Please note that this JQL function MUST be used with 'project = <projectKey>' together. 

ID
Usage
Description
1project = <projectKey> issue in hasRequirements()

Searches Test Cases those have Requirements associated

2project = <projectKey> issue in hasRequirements('issueKey1','issueKey2')Searches Test Cases those have specified Requirements associated
3project = <projectKey> issue 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")

...

Please note that nested functions are supported in this JQL.

Please note that this JQL function MUST be used with 'project = <projectKey>' together. 

ID
Usage
Description
1project = <projectKey> issue in hasTestCases()Searches Requirements those have Test Cases associated
2project = <projectKey> issue in hasTestCases('issueKey1','issueKey2')Searches Requirements those have specified Test Cases associated
3project = <projectKey> issue not in hasTestCases() and type = 'Requirement'Searches Requirements those have no Test Case associated
4

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

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

Searches Requirements those have a set of Test Cases associated, those Test Cases are returned by nested function ('project = <projectKey> 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">')

...