| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare( strict_types=1 ); |
||
| 13 | class TextUtilsTest extends TestCase |
||
| 14 | { |
||
| 15 | public function testConvertToCamelCase () : void |
||
| 16 | { |
||
| 17 | $textUtils = new TextUtils(); |
||
| 18 | |||
| 19 | $given = "this_is_a_text"; |
||
| 20 | $expected = "thisIsAText"; |
||
| 21 | |||
| 22 | $this->assertEquals( $expected, $textUtils->textToCamelCase( $given ) ); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testConvertToPascalCase () : void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |