Conditions | 1 |
Paths | 1 |
Total Lines | 26 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function getGherkinFeature() |
||
34 | { |
||
35 | return <<<GHERKIN |
||
36 | Feature: Long feature with outline |
||
37 | Scenario: Scenario#1 |
||
38 | Given initial step |
||
39 | When action occurs |
||
40 | Then outcomes should be visible |
||
41 | |||
42 | Scenario: Scenario#2 |
||
43 | Given initial step |
||
44 | And another initial step |
||
45 | When action occurs |
||
46 | Then outcomes should be visible |
||
47 | |||
48 | Scenario Outline: Scenario#3 |
||
49 | When <action> occurs |
||
50 | Then <outcome> should be visible |
||
51 | |||
52 | Examples: |
||
53 | | action | outcome | |
||
54 | | act#1 | out#1 | |
||
55 | | act#2 | out#2 | |
||
56 | | act#3 | out#3 | |
||
57 | GHERKIN; |
||
58 | } |
||
59 | |||
65 |