Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function testDetectUnderscoreLowercaseFromSniffNames() |
||
22 | { |
||
23 | $newNames = $this->sniffNaming->detectUnderscoreLowercaseFromSniffNames(['somestandard.group.specific']); |
||
24 | $this->assertSame(['somestandard_sniffs_group_specificsniff'], $newNames); |
||
25 | } |
||
26 | |||
27 | public function testDetectDottedFromFilePaths() |
||
28 | { |
||
29 | $filePaths = ['/vendor/SomeStandard/Sniffs/Group/SpecificSniff.php']; |
||
30 | $names = $this->sniffNaming->detectDottedFromFilePaths($filePaths); |
||
31 | |||
37 |