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