コード例 #1
0
ファイル: CamelCaseTest.php プロジェクト: poliander/rio
 public function testConvertingToCamelCaseNotationWithLowerFirstLetter()
 {
     $this->assertEquals('thisIsCamelCase', CamelCase::to('this_is_camel_case', false));
 }
コード例 #2
0
ファイル: CamelCaseTest.php プロジェクト: poliander/janeiro
 public function testConvertingToCamelCaseNotation()
 {
     $this->assertEquals('ThisIsCamelCase', CamelCase::to('this_is_camel_case'));
 }