public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される()
 {
     $this->expected = 'りんご, バナナ';
     $this->actual = SC_Utils::sfGetCommaList(array('りんご', 'ミカン', 'バナナ'), TRUE, array('梨', 'ミカン', '柿'));
     $this->verify('連結済みの文字列');
 }