Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/tests/class/helper/SC_Helper_Purchase/SC_Helper_Purchase_clearShipmentItemTempTest.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_clearShipmentItemTempTest extends SC_Helper_Purchase_TestBase { 
     34class SC_Helper_Purchase_clearShipmentItemTempTest extends SC_Helper_Purchase_TestBase 
     35{ 
    3536 
    36   protected function setUp() { 
     37  protected function setUp() 
     38  { 
    3739    parent::setUp(); 
    3840  } 
    3941 
    40   protected function tearDown() { 
     42  protected function tearDown() 
     43  { 
    4144    parent::tearDown(); 
    4245  } 
    4346 
    4447  ///////////////////////////////////////// 
    45   public function testClearShipmentItem_配送先ID未指定の場合_全ての配送商品がクリアされる() { 
     48  public function testClearShipmentItem_配送先ID未指定の場合_全ての配送商品がクリアされる() 
     49  { 
    4650    $this->setUpShipping($this->getMultipleShipping()); 
    4751 
     
    5761  } 
    5862 
    59   public function testClearShipmentItem_配送先ID指定の場合_指定したIDの配送商品がクリアされる() { 
     63  public function testClearShipmentItem_配送先ID指定の場合_指定したIDの配送商品がクリアされる() 
     64  { 
    6065    $this->setUpShipping($this->getMultipleShipping()); 
    6166 
     
    7176  } 
    7277 
    73   public function testClearShipmentItem_存在しないIDを指定した場合_何も変更されない() { 
     78  public function testClearShipmentItem_存在しないIDを指定した場合_何も変更されない() 
     79  { 
    7480    $this->setUpShipping($this->getMultipleShipping()); 
    7581 
     
    8591  } 
    8692 
    87   public function testClearShipmentItem_商品情報が配列でない場合_何も変更されない() { 
     93  public function testClearShipmentItem_商品情報が配列でない場合_何も変更されない() 
     94  { 
    8895    $this->setUpShipping($this->getMultipleShipping()); 
    8996    // 内容を配列でないように変更 
Note: See TracChangeset for help on using the changeset viewer.