...
Description: lowest number of Scenarios contained in any Rule inside the overall Feature.
Expand | ||
---|---|---|
| ||
Feature.leastScenariosInRule = 0 Could be used to find Issues where there is at least one Rule without any Scenarios This same query will also include any issues where there is a Rule with Scenarios however there is no text after the Rule keyword (i.e. an empty Rule card), meaning the Rule is not defined yet. |
...
Description: highest number of Scenarios contained in any Rule inside the overall Feature.
Expand | ||
---|---|---|
| ||
Feature.mostScenariosInRule > 5 Could be used to find Issues where there are perhaps too many Scenarios in a Rule which could mean that some of the examples could be potentially moved under a new not yet captured rule. |
...
Expand | ||
---|---|---|
| ||
Feature.scenarios = 0 Could be used to find Jira issues that do not yet have any examples of behaviour |
Feature.leastStepsInScenario
Type - Number
Description: lowest number of Steps contained in any of the Scenarios inside the overall Feature
Expand | ||
---|---|---|
| ||
Feature.leastStepsInScenario = 0 Could be used to find Jira issues where there is at least one Scenario which hasn’t been discussed to the level of concrete steps that would demonstrate the desired behaviour. |
Feature.mostStepsInScenario
Type - Number
Description: highest number of Steps contained in any of the Scenarios inside the overall Feature
Expand | ||
---|---|---|
| ||
Feature.mostStepsInScenario > 5 Could be used to find Jira issues that have Scenarios with potentially too many steps which could mean that the Steps were used to describe ‘how’ functionally was implemented and not ‘what’ behavior was required which is an anti pattern in BDD. |
Feature.warnings
Type - Number
Description: total number of warnings the Feature contains according to the syntax of Gherkin
Expand | ||
---|---|---|
| ||
Feature.warnings > 0 Could be used to find for example indentation warnings Or missing data table values |
Feature.errors
Type - Number
Description: total number of errors the Feature contains according to the syntax of Gherkin
Expand | ||
---|---|---|
| ||
Feature.errors > 0 Could be used to find incorrectly entered text Or structurally incorrect data tables |
Feature.lines
Type - Number
Description: total lines in a Feature
Expand | ||
---|---|---|
| ||
Feature.lines > 100 |