public function testSfRmDupSlash_上記以外の場合_全ての重複スラッシュが1つになる()
 {
     $input = 'hoge//www.example.co.jp///aaa//bb/co.php';
     $this->expected = 'hoge/www.example.co.jp/aaa/bb/co.php';
     $this->actual = SC_Utils::sfRmDupSlash($input);
     $this->verify();
 }