コード例 #1
0
 public function testUnsetShippingTemp__配送情報が全て破棄される()
 {
     SC_Helper_Purchase::unsetShippingTemp(TRUE);
     $this->expected = array('shipping' => TRUE, 'multiple_temp' => TRUE);
     $this->actual['shipping'] = empty($_SESSION['shipping']);
     $this->actual['multiple_temp'] = empty($_SESSION['multiple_temp']);
     $this->verify('セッション情報が空かどうか');
 }