Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
27 | public function testSplitCamelCase() |
||
28 | { |
||
29 | $ccHeader = ['', 'stay_the_same', 'TestStringOne', 'TestStringTwo', 'TestABBRStrings', 'camelCase']; |
||
30 | $expected = ['', 'stay_the_same', 'Test String One', 'Test String Two', 'Test ABBR Strings', 'camel Case']; |
||
31 | |||
32 | $this->assertEquals($expected, SplitCamelCaseWordsFormatter::format($ccHeader)); |
||
33 | } |
||
35 |