blob: 0d64db9cfbb7a7994a265d7f2956351344c91063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Feature: Concatenate strings
As a user of the concatenator
I want to concatenate 2 strings
Background:
Given the start value is "Georg"
Scenario: Concatenate strings
When I concatenate "Cantor"
Then the result should be "Georg Cantor"
Scenario: Concatenate strings
When I concatenate "Wilhelm"
When I concatenate "Friedrich"
When I concatenate "Hegel"
Then the result should be "Georg Wilhelm Friedrich Hegel"
|