Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | public function testDetectDottedFromFilePaths() |
||
28 | { |
||
29 | $filePaths = ['/vendor/SomeStandard/Sniffs/Group/SpecificSniff.php']; |
||
30 | $names = $this->sniffNaming->detectDottedFromFilePaths($filePaths); |
||
31 | |||
32 | $this->assertSame([ |
||
33 | 'SomeStandard.Group.Specific' => $filePaths[0] |
||
34 | ], $names); |
||
35 | } |
||
36 | } |
||
37 |