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