public function testSfPassLen_入力が正の数の場合_入力と同じ文字数のアスタリスクが返る()
 {
     $input = 17;
     $this->expected = '*****************';
     $this->actual = SC_Utils::sfPassLen($input);
     $this->verify();
 }