Beispiel #1
0
 public function testUnderscoredToCamelcased()
 {
     $this->assertEquals('thisIsUnderscored', Garp_Util_String::underscoredToCamelcased('this_is_underscored'));
     $this->assertEquals('ThisIsUnderscored', Garp_Util_String::underscoredToCamelcased('this_is_underscored', true));
 }