Starting from a certain project I would like to get all tests associated to that project in a somewhat structured way to generate a test report. What I found out so far is that I can get a list with all tests from a certain test plan (via JQl: testPlanTests) but I can't find a way to get all test plans (or even one) that belongs to that project. Is there a JQL or rest api instruction or a workaround for that?
Best regards
Sophie
Hi @Sophie Hendrich and welcome to the community,
as far as I got you right this should be possible. As XRAY-issues are handled as native JIRA issues the following JQL would give you a list of test plan issues of a certain project:
issuetype = "Test Plan" and project = "<projectKey>" ORDER BY created DESC
Please let me know if this meets your requirement or if there any further questions.
Best
Stefan
Yes, this helps. But there isn't a way to do this via Rest Api, right?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
According to following atlassian documentation I guess it should be possible
Unfortunately I don´t have a server environment to test. Feel free to give it a shot and let me know if it works or if there are further questions.
Best
Stefan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry for the late reply. The notification email was pushed into the spam folder for some reason and then I had some problems logging in... However I'll check once I'm back at work. But so far it looks promising ^^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.