Hello,
I would like to search all test that are linked to (test) a group of tickets has the same characteristics, e.g. has the same component.
What is the suitable JQL command in this case?
Thanks
Best regards
Thanks Ilya Turov for the answers,
Yes, I've looked at this doc, it's really helpful.
I've resolved the problem by using the following JQL
issuetype = Test AND issue in requirementTests("my filter")
My need is create a board (TB) that content all test, test set, test execution... that linked (test) to the requirement issues in a board (RB) that defined by the filter "my filter".
With the above JQL, I can get all test (T), that test a ticket in the board RB.
However, I haven't the solution to get also the test set, test execution, that content at least a test in T.
Regards
xray has pretty good documentation about it's jql functuions:
https://confluence.xpand-it.com/display/public/XRAY/Enhanced+querying+with+JQL
assuming your tests are in test sets (as they should be I guess), you can create a saved filter like
issuetype = "Test Set" and component = "Your component"
save it and then use
issuetype = "Test" and key in testSetTests("Your saved filter name")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.