Esempio n. 1
0
 public function testToCamelCase()
 {
     $string = 'hello_world';
     $this->assertEquals('HelloWorld', Elastica_Util::toCamelCase($string));
     $string = 'how_are_you_today';
     $this->assertEquals('HowAreYouToday', Elastica_Util::toCamelCase($string));
 }