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_registerShipmentItemTest.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_registerShipmentItemTest extends SC_Helper_Purchase_TestBase { 
    35  
    36   protected function setUp() { 
     34class SC_Helper_Purchase_registerShipmentItemTest extends SC_Helper_Purchase_TestBase 
     35{ 
     36 
     37  protected function setUp() 
     38  { 
    3739    parent::setUp(); 
    3840    $this->setUpShipmentItem(); 
    3941  } 
    4042 
    41   protected function tearDown() { 
     43  protected function tearDown() 
     44  { 
    4245    parent::tearDown(); 
    4346  } 
    4447 
    4548  ///////////////////////////////////////// 
    46   public function testRegisterShipmentItem_製品クラスIDが入っていない場合_登録を行わない() { 
     49  public function testRegisterShipmentItem_製品クラスIDが入っていない場合_登録を行わない() 
     50  { 
    4751    // 引数の設定 
    4852    $order_id = '1'; 
     
    7579  } 
    7680 
    77   public function testRegisterShipmentItem_製品名等が指定されている場合_指定された値で登録を行う() { 
     81  public function testRegisterShipmentItem_製品名等が指定されている場合_指定された値で登録を行う() 
     82  { 
    7883    // 引数の設定 
    7984    $order_id = '1'; 
     
    115120  } 
    116121 
    117   public function testRegisterShipmentItem_製品名等が指定されていない場合_DBからマスタ情報を取得して登録を行う() { 
     122  public function testRegisterShipmentItem_製品名等が指定されていない場合_DBからマスタ情報を取得して登録を行う() 
     123  { 
    118124    // 引数の設定 
    119125    $order_id = '1'; 
     
    158164  } 
    159165 
    160   public function testRegisterShipmentItem_DBに存在しないカラムを指定した場合_エラーなく登録できる() { 
     166  public function testRegisterShipmentItem_DBに存在しないカラムを指定した場合_エラーなく登録できる() 
     167  { 
    161168    // 引数の設定 
    162169    $order_id = '1'; 
Note: See TracChangeset for help on using the changeset viewer.