Reputation: 1
I am trying to generate Overall Requirement Coverage Report using Xray plugin for Jira.
No matter what I do, it seems like it is not possible to separate Stories covered by Cucumber Test type issue and the ones covered by Manual Test issue. Generated report - Stories covered by Manual and Cucumber test types
On the issue screen within the Test Coverage section, it is possible to differentiate both types, but I could not manage to do it when generating coverage reports.Test Coverage section
Is there another way to generate a report, showing what is the Cucumber coverage of a project?
Upvotes: 0
Views: 615
Reputation: 2129
Xray doesn't differentiate explictly if tests are running through automation or run manually. Usually, Cucumber scenarios have test automation code associated with them... but not always. People can still execute those Cucumber scenarios manually. For that and other reasons, you don't have an explicit way to make reports that show you the %tests automated or derivated reports.
Besides, coverage in Xray is not a percentage; it takes into account the results from all tests you performed, no matter how.
Going to your initial need, you could use the "scope" to accomplish it. You would do it as follows:
More on analysis by Test Plan here and here.
Upvotes: 0