06-08-2017 06:50 PM
I'd like to have a list of requirements as additional results in my ATML report (so Requirements Gateway can read them). Anyone done this before, and can point me in the right direction? I was thinking I could just add a post-step callback that adds them if they're there, but I'm wondering if there's a more efficient method...
Solved! Go to Solution.
06-09-2017 07:09 AM - edited 06-09-2017 07:10 AM
Sadly, the images you included do not display on my computer.
Have you checked "Additional Results" already? - Requirements are a preconfigured selection there....
06-09-2017 09:12 AM
You can also use the API method Execution.AddExtraResult which
copy a step property to the results list after the execution of each step. For example
RunState.Execution.AddExtraResult("Step.TS.Requirements.Links", "Requirements")
Unfortunately, to be displayed in the report, you must enable the IncludeInReport flag for the property. Maybe you can modify the step type of all the steps you want to display requirements and enable the IncludeInReport flag of Step.TS.Requirements.Links
Have a look in the help page Adding Custom Data to a Report
Regards
06-09-2017 07:42 PM - edited 06-09-2017 07:44 PM
Thanks guys - you're awesome. I now have Requirements Gateway tracing TestStand XML report for requirements. Once I have a few more requirements tagged in TestStand, I'll upload a screenshot of the project hierarchy 🙂