| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | protected function getKeywordsArray() |
||
| 16 | { |
||
| 17 | return array( |
||
| 18 | 'with_special_chars' => array( |
||
| 19 | 'and' => 'And/foo', |
||
| 20 | 'background' => 'Background.', |
||
| 21 | 'but' => 'But[', |
||
| 22 | 'examples' => 'Examples|Scenarios', |
||
| 23 | 'feature' => 'Feature|Business Need|Ability', |
||
| 24 | 'given' => 'Given', |
||
| 25 | 'name' => 'English', |
||
| 26 | 'native' => 'English', |
||
| 27 | 'scenario' => 'Scenario', |
||
| 28 | 'scenario_outline' => 'Scenario Outline|Scenario Template', |
||
| 29 | 'then' => 'Then', |
||
| 30 | 'when' => 'When', |
||
| 31 | ), |
||
| 32 | ); |
||
| 33 | } |
||
| 34 | |||
| 49 |