Beispiel #1
0
 public function testConvertingToCamelCaseNotationWithLowerFirstLetter()
 {
     $this->assertEquals('thisIsCamelCase', CamelCase::to('this_is_camel_case', false));
 }
Beispiel #2
0
 public function testConvertingToCamelCaseNotation()
 {
     $this->assertEquals('ThisIsCamelCase', CamelCase::to('this_is_camel_case'));
 }