/**
  * Method to test Normalise::toCamelCase().
  *
  * @param   string  $expected  The expected value from the method.
  * @param   string  $input     The input value for the method.
  *
  * @return  void
  *
  * @covers        Joomla\String\Normalise::toCamelcase
  * @dataProvider  seedTestToCamelCase
  * @since         1.0
  */
 public function testToCamelCase($expected, $input)
 {
     $this->assertEquals($expected, Normalise::toCamelcase($input));
 }