public function testRepeatStrWithSeparator_区切り文字が未指定の場合_カンマ区切りとなる()
 {
     $this->expected = 'ECサイト,ECサイト,ECサイト';
     $this->actual = SC_Utils::repeatStrWithSeparator('ECサイト', 3);
     $this->verify('連結済みの文字列');
 }