public function testSfGetCSVList_配列に要素が存在する場合_CSV形式に変換した文字列が返る()
 {
     $this->expected = '"1つ目の要素","カンマを,含む要素","3つ目の要素"' . "\r\n";
     $this->actual = SC_Utils::sfGetCSVList(array('1つ目の要素', 'カンマを,含む要素', '3つ目の要素'));
     $this->verify('CSVフォーマットの文字列');
 }