public function testSetDownloadableFlgTo_ダウンロード期限外かつ入金日なしの場合_フラグがOFFになる()
 {
     $input = array('1001' => array('price' => 1000, 'effective' => '0', 'payment_date' => null));
     $this->expected = false;
     SC_Helper_Purchase::setDownloadableFlgTo($input);
     $this->actual = $input['1001']['is_downloadable'];
     $this->verify('ダウンロード可能フラグ設定結果');
 }