Saved Coverage
View LayoutViews
A panel on the left of the coverage view provides a list of saved views and buttons to manage the views. context menu operations to manage the views. The list provides 2 fixed containers: Personal Views and Public Views.
Personal Views and Public Views are fixed containers that determine the saved view’s accessibility. Views under Personal Views will only be accessible to the person who created it. While views under Public Views are accessible to everyone who has access to the Jira project.
Context Menu Operations
Availability | |||||
View Container | Saved View | ||||
✅ | ❌ | Configure view | Configure a new coverage view.
| ||
✅ | ❌ | Sort by name | Sort the saved views under the container by name ascending or descending. | ||
❌ | ✅ | Copy link address | Copy the link address of the saved view to clipboard. | ||
❌ | ✅ | Delete | Delete the saved view. | ||
❌ | ✅ | Export | Select Export to export the coverage table to excel.
|
Drag and Drop Operations
The saved coverage views support the following drag and drop operations:
Change the position of the saved view
Move personal views to public views
Move owned public views to personal views
Coverage View Operations
To open a view, select its name from the list of saved views. The rest of the coverage view right-side displays the requirements included in the viewbased on the selected saved view’s configuration, arranged in columns. Linked requirements are generally positioned adjacent to each other in the columns (though it is possible for them to be non-adjacent).
The view is initially empty. You can either select a saved view or click on New View to create a new view.
Purpose
Purpose | Operation |
---|---|
Save a new coverage view | Select New View. After creating column configurations, click on Save as and input a valid coverage view name. |
If a large number of requirements are to be displayed, they are incrementally loaded with a bar indicating progress.
Coverage View Operations
To save from an existing saved coverage view, first select a saved view, then click on Save as and input a valid coverage view name.
| ||
Save/discard changes made on saved view | Select a saved view. After making changes to any coverage view column configuration, an indicator that the view has been Edited and options to Save, Save as or Discard Changes will show at the right side of the coverage view name. | |
Rename a coverage view | Click on the coverage view’s name to trigger an inline edit. Input a new coverage name then save or cancel the changes. Clicking outside the input field will automatically save changes. | |
Select items for new view | If you do not select a saved view, you first select the requirements that form the leftmost column of the view. This column is the starting point for the coverage and generally contains the highest level requirements in the project. First select |
New View, then fill in the required information in the Configure View dialog. The Label is the name to use in the column heading. The requirements are selected in one of three ways, depending on the option chosen for Source: |
|
|
|
| |
Add columns | Additional columns are added to display requirements with links to requirements in a different column (generally the column to the immediate left of the new column). Additional columns usually contain more specific levels of requirements. First select Add Coverage Level, then fill in the required information in the Add Coverage Level dialog. The information is the same as in the Configure View dialog, except for the following additional options:
|
Update column | Hover on the column header and select the pencil icon to modify the column configuration. |
Column information
Hover on the column header and select the question mark to see the column configuration.
View coverage statistics
In the column header, you will see the number of issues in the column and the coverage percentage.
These information can be hidden by selecting “Hide Coverage Statistics“ in the display fields.
The formula which calculates the coverage percentage can also be modified by Jira administrators in the Configuration page.
Tree folder filter
To filter requirements in the leftmost column by tree folder, hover on the column header and select the Filter icon. A dialog will appear which shows the tree folder structure for the project selected. Select one or more folders from the tree folder structure and click on the Select button to apply it to the view.
Clear filter
If a folder filter is enabled, disable it by hovering on the column header and selecting the Clear Filter icon.
Remove column | The rightmost column in the coverage view can be removed by hovering on the column header and selecting the Remove Column icon. |
Open issue in |
Select an issue key.
If the issue is contained in only one project tree, that project tree is opened in a new tab, with the selected issue displayed in the detail view.
If the issue is contained in multiple project trees, in the dialog select the project tree to be opened .
If the issue is not contained in any project tree, in the dialog confirm that you want to be redirected to the Jira issue view.
Open issue in Jira
Jira issue detail dialog | Click on an issue key |
to show the issue details in the Jira issue |
detail dialog. | |
Create a new linked issue | Hover on the cell |
, click on the ellipsis (…) icon, and select Create linked issue to open a dialog where you choose the link type and then proceed to create the new issue. |
Link |
existing issue | Hover on the cell, click on the ellipsis (…) icon, and select |
Link |
existing issue to open |
a dialog |
where you choose the link type and |
Only Managed Filters in the following categories can be selected in the Filter picker: Filters shared with current requirements project, Filters in “My“, “Favorite“, and “Popular“.
then proceed to link existing issues. | |
Unlink an issue | Hover on the cell, click on the ellipsis (…) icon, and select |
Remove issue link to open a dialog where you can choose to proceed with unlinking. | |
Review suspect link | Select the suspect icon in an issue link flagged as suspect to open the |
Revision Comparison dialog for suspect review. | |
Refresh display | Select Refresh to display the latest state of the requirements. |
Clear configuration | Select |
New View to return to an empty view |
and open the Configure View dialog. | |
Display fields | Select Display Fields to customize the values to be displayed on the cells. The fields displayed by default are Summary, Key, Issue Type, Status, Priority, |
Link Relation and Coverage Statistics. The details displayed in the each cell can be configured in the Display Fields menu. |
The configuration is maintained when you save a view. |
In coverage view display fields, there are special display fields, namely “Hide Coverage Statistics“ and “Hide Linked Issues“.
Hide Coverage Statistics: Hides the coverage completeness percentage and number of issues statistics in the coverage column header.
Hide Linked Issues: Hides information on issue link relations in each coverage view cell.
| ||
Display complete field value | Hover on a truncated field value to display the complete value. |
Export
Select the Export menu to save a view in XML or Excel format.
If the export is done while the coverage view has not finished loading, the header info of issue count and percentage will not be available in the exported file.
Revision comparison for suspects
When an issue is marked as having a suspect link, the issue link type is displayed as a hyperlink. Select the link to open the Comparison Tool. See /wiki/spaces/REQ4JCLOUD/pages/1217265665.
Saving Views
The configuration of a coverage view can be saved and reused.
Purpose
Operation
Save new view
Select the Save view as button in the left panel and fill in the required information:
Name: Name of the view.
Visibility: Specify if the view is private (available only to the currently logged in user) or public (available to all users with access to the project).
Save view
Select the Save View button to save any changes made to an already saved view.
Open saved view
Select an existing view.
Rename view
Hover on the saved view's name, select "..." then select Rename and provide a new name.
Delete view
Hover on the saved view's name, select "..." then select Delete and confirm.
Get URL
Formula for coverage completeness percentage
By default, row based formula is used in calculating coverage completeness percentage. The formula can be configured in the global easeRequirements Configuration in Manage apps.
Row based
Code Block | ||
---|---|---|
| ||
given
a = total number of rows in previous column
b = number of rows not covered in current column
((a - b) / a * 100 |
Issue based
Code Block | ||
---|---|---|
| ||
given
a = number of issues in previous column
b = number of issues in previous column not covered in current column
((a - b) / a * 100 |