Hi,
Does anyone know how to generate a report to show requirements without a test case linked to it. Im using TM4J - Adaptavist.
We have created stories and have linked test cases to these stories. I'm trying to find a way to generate a report that would show stories missing test cases. I can however, generate a report that shows test cases to stories, but I need the full picture.
Any help would be appreciated.
Cheers
Malo
There are built in reports in TM4J - I think the one titled "Traceability > Traceability Tree (custom hierarchy)" will give you what you are looking for. It has options to list items that are not covered.
I am not a user of TM4J but i can suggest you JQL query to get the same results .
First identify the link type you are using with test cases and stories , for example if its 'test by' then you can get the report using this query.
issuetype =Test and issueLinkType not in ("test by")
It will return all test cases which have no linked stories.
following query will return all stories which have no linked test case.
issuetype =Storyand issueLinkType not in ("test by")
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.