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