| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 24 | class SplitCamelCaseWordsFormatterTest extends TestCase |
||
| 25 | { |
||
| 26 | public function testCreateFormatter() |
||
| 27 | { |
||
| 28 | $ccWordFormatter = new SplitCamelCaseWordsFormatter(); |
||
| 29 | $this->assertNotNull($ccWordFormatter); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testSplitCamelCase() |
||
| 41 | } |
||
| 42 | } |
||
| 43 |