[Svn-src-all:3630] [version-2_12-dev 22542] #2134 r22537 で不要になった関数を削除したので、対応するテストケースを削除

pineray admin @ mail.ec-cube.net
2013年 2月 13日 (水) 19:04:26 JST


Subversion committed to /home/svn/open 22542
http://svn.ec-cube.net/open_trac/changeset/22542
┌────────────────────────────┐
│更新者 :  pineray                                      │
│更新日時:  2013-02-13 19:04:26 +0900 (水, 13  2月 2013)│
└────────────────────────────┘

Log:
--------------------------------------------------------
#2134 r22537 で不要になった関数を削除したので、対応するテストケースを削除

Changed:                      [U:修正,A:追加,D:削除]
--------------------------------------------------------
D   branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPaymentsIdTest.php

削除: branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPaymentsIdTest.php
===================================================================
--- branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPaymentsIdTest.php	2013-02-13 09:59:22 UTC (rev 22541)
+++ branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_getPaymentsByPaymentsIdTest.php	2013-02-13 10:04:26 UTC (rev 22542)
@@ -1,85 +0,0 @@
-<?php
-
-$HOME = realpath(dirname(__FILE__)) . "/../../../..";
-require_once($HOME . "/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_TestBase.php");
-/*
- * This file is part of EC-CUBE
- *
- * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
- *
- * http://www.lockon.co.jp/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- */
-
-/**
- * SC_Helper_Purchase::getPaymentsByPaymentsId()のテストクラス.
- *
- *
- * @author Hiroko Tamagawa
- * @version $Id$
- */
-class SC_Helper_Purchase_getPaymentsByPaymentsIdTest extends SC_Helper_Purchase_TestBase {
-
-
-  protected function setUp() {
-    parent::setUp();
-    $this->setUpPayment();
-  }
-
-  protected function tearDown() {
-    parent::tearDown();
-  }
-
-  /////////////////////////////////////////
-  public function testGetPaymentsByPaymentsId_存在しない支払IDを指定した場合_結果が空になる() {
-    $payment_id = '9999'; // 存在しないID
-  
-    $this->expected = null;
-    $helper = new SC_Helper_Purchase();
-    $this->actual = $helper->getPaymentsByPaymentsId($payment_id);
-
-    $this->verify('支払方法');
-  }
-
-  public function testGetPaymentsByPaymentsId_存在する支払IDを指定した場合_対応する支払方法の情報が取得できる() {
-    $payment_id = '1001';
-  
-    $this->expected = array(
-      'payment_id' => '1001',
-      'payment_method' => '支払方法1001'
-    );
-
-    $helper = new SC_Helper_Purchase();
-    $this->actual = $helper->getPaymentsByPaymentsId($payment_id);
-    $this->actual = Test_Utils::mapArray($this->actual, array('payment_id', 'payment_method'));
-
-    $this->verify('支払方法');
-  }
-
-  public function testGetPaymentsByPaymentsId_削除されている支払IDを指定した場合_結果が空になる() {
-    $payment_id = '1002'; // 削除済みのID
-  
-    $this->expected = null;
-    $helper = new SC_Helper_Purchase();
-    $this->actual = $helper->getPaymentsByPaymentsId($payment_id);
-
-    $this->verify('支払方法');
-  }
-
-  //////////////////////////////////////////
-
-}
-




Svn-src-all メーリングリストの案内