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