/**
  * Method to test JStringNormalise::toCamelCase().
  *
  * @param   string  $expected  The expected value from the method.
  * @param   string  $input     The input value for the method.
  *
  * @return  void
  *
  * @dataProvider  seedToCamelCase
  * @since   11.3
  */
 public function testToCamelCase($expected, $input)
 {
     $this->assertEquals($expected, JStringNormalise::toCamelcase($input));
 }