Menu

Feature template

Henk van den Akker

Copy the code at the end of this page into the ticket body.

Enter your user story in the Feature part as follows

Feature: <Some terse yet descriptive text of what you desire>
  In order to <Why: the benefit you expect to get from the new feature>
  As a <Who: your role, e.g. GTD Sync user>
  I want to gain some beneficial outcome which furthers the goal

With one or more scenarios you can optionally further specify how the new feature should behave. I can also work them out later and together we can verify whether it is what you expect.

  Scenario: Some determinable situation
    Given some precondition
    And some other precondition
    When some action by the user
    And some other action
    And yet another action
    Then some testable outcome is achieved
    And something else we can check happens too

Code to copy into the ticket body

~~~Gherkin
Feature:
  In order to
  As a GTD Sync user
  I want to

  Scenario:
    Given
    And
    When
    And
    Then
    And
~~~

Related

Wiki: Wiki map