Expand All
Collapse All
In order to validate implementations against acceptance criterias
As a go developer
I want to define actions and behavior of cucumber steps
Feature: feature
Scenario: scenario
Given a step with codeFeature: feature
Scenario: scenario
Given failure stepfailure message
In order to delevop behavior driven
As a go developer
I want to get feedback about success or failure of steps and scenarios
Feature: feature
Scenario: scenario
Given an undefined step1 scenario (1 undefined) 1 step (1 undefined)
Feature: feature
Scenario: scenario
Given a step which is pending1 scenario (1 pending) 1 step (1 pending)
Feature: feature
Scenario: scenario
Given a step which passes1 scenario (1 passed) 1 step (1 passed)
Feature: feature
Scenario: scenario
Given a step which fails1 scenario (1 failed) 1 step (1 failed)
Feature: feature
Scenario: scenario
Given a step which passes
And a step which fails
Then a step which is pending
And a step which passes1 scenario (1 failed) 4 steps (1 failed, 2 skipped, 1 passed)
In order to quickly add new steps
I want code snippets for undefined steps
Feature: feature
Scenario: scenario
Given an undefined step
When another undefined step
Then yet another undefined stepcucumber.Given("an undefined step").Pendingcucumber.When("another undefined step").Pendingcucumber.Then("yet another undefined step").PendingIn order to reuse steps with different parameters
I want to use regular expressions in step patterns
Feature: feature
Scenario: scenario
Given a number 1234