toCamelCase() public static method

For example: hello_world to HelloWorld
public static toCamelCase ( string $string ) : string
$string string snake_case string
return string CamelCase string
 public function testToCamelCase()
 {
     $string = 'hello_world';
     $this->assertEquals('HelloWorld', Util::toCamelCase($string));
     $string = 'how_are_you_today';
     $this->assertEquals('HowAreYouToday', Util::toCamelCase($string));
 }