Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 1 | public function createFilename(FeatureNode $feature, ScenarioInterface $scenario, OutlineNode $outline = null) |
|
21 | { |
||
22 | 1 | return rtrim( |
|
23 | 1 | sprintf( |
|
24 | 1 | '%s.%s', |
|
25 | 1 | $this->fileNamingStrategy->createFilename($feature, $scenario, $outline), |
|
26 | 1 | $this->extension |
|
27 | 1 | ), |
|
28 | '.' |
||
29 | 1 | ); |
|
30 | } |
||
31 | } |
||
32 |