Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • A single Cucumber feature file is generated for each requirement associated with this Test.
  • The feature contains the feature header description of the associated requirement, if presentthere is no requirement associated then the feature header will contain the summary of the test.
  • The feature contains the background of the Test, if present in the Precondition associated with it.
  • The feature contains the Scenario/Scenario Outline defined in this Test.

...

  • A single Cucumber feature file is generated for each different tuple (Requirement, Precondition).
  • A Test Execution does not contain repeated tests.
  • If a Test is not associated with a requirement, then it will be exported as an independent feature file.
  • If a Test is associated with more than one requirement, then a feature file will be generated for each requirement. The generated .feature files will contain repeated test scenarios.
  • The feature contains the feature header description of the associated requirement, if present. If no requirement is associated then the feature header will contain the summary of the Test Set if the test was exported from a single test set or the summary of the Test. 
  • The feature contains the common background of the Tests, if present in the Precondition.
  • The feature contains the Scenario/Scenario Outline for all the tests.

...


[ #language: { language } ]
[ @{ Test Execution issue Key } ]
[ @{ Requirement issue Key } ]
Feature: [{ Requirement Issue Summary } || { Test Set Issue Summary } || { Test Issue Summary }]
    [{ Requirement Issue Description }]
     
    [Background:
        { Pre-Conditions }]
     
    [# { Test Issue Description }]
    @{ Test Issue Key } 
    [@{ SubRequirement Issue Key 1 } ... @{ SubRequirement Issue Key N }] 
    [@{ Test Set Issue Key 1 } ... @{ Test Set Issue Key N }] 
    [@{ Test Issue Label 1 } ... @{ Test Issue Label N}]
    Scenario [Outline]: { Test Issue Summary }
        {Test Issue Steps}
    ...


...