Example #1
0
 public function testDashedToCamelcased()
 {
     $this->assertEquals('thisIsDashed', Garp_Util_String::dashedToCamelcased('this-is-dashed'));
     $this->assertEquals('ThisIsDashed', Garp_Util_String::dashedToCamelcased('this-is-dashed', true));
 }