コード例 #1
0
ファイル: StringTest.php プロジェクト: grrr-amsterdam/garp3
 public function testUnderscoredToCamelcased()
 {
     $this->assertEquals('thisIsUnderscored', Garp_Util_String::underscoredToCamelcased('this_is_underscored'));
     $this->assertEquals('ThisIsUnderscored', Garp_Util_String::underscoredToCamelcased('this_is_underscored', true));
 }