Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
As system, whenever standalone Cucumber tests (i.e. tests not linked to requirements) are exported, the "Feature" name section of the generated .feature(s) should be filled with the summary of the issue that was selected as basis for export.
Example1: exporting directly a Cucumber Test
Thus, considering a simple cucumber Test issue with these fields:
Test Summary: sum of two positive numbers
Test Scenario:
Given I have this When I do this Then I should see that
if it was exported it should produce a .feature with this content:
Feature: sum of two positive numbers Scenario: sum of two positive numbers Given I have this When I do this Then I should see that
Example2: exporting Cucumber Tests from a Test Set issue
Test Set Summary: core tests
Test Summary: sum of two positive numbers
Test Scenario:
Given I have this When I do this Then I should see that
Test Summary: successful login
Test Scenario:
Given I have a username When I login Then I should see the welcome page
if it was exported it should produce a .feature with this content:
Feature: core tests Scenario: sum of two positive numbers Given I have this When I do this Then I should see that Scenario: successful login Given I have this When I do this Then I should see that