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