コード例 #1
0
ファイル: StringTest.php プロジェクト: grrr-amsterdam/garp3
 public function testDashedToCamelcased()
 {
     $this->assertEquals('thisIsDashed', Garp_Util_String::dashedToCamelcased('this-is-dashed'));
     $this->assertEquals('ThisIsDashed', Garp_Util_String::dashedToCamelcased('this-is-dashed', true));
 }