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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_getOrderDetailTest extends SC_Helper_Purchase_TestBase { 
     34class SC_Helper_Purchase_getOrderDetailTest extends SC_Helper_Purchase_TestBase 
     35{ 
    3536 
    3637 
    37   protected function setUp() { 
     38  protected function setUp() 
     39  { 
    3840    parent::setUp(); 
    3941    $this->setUpOrder(); 
     
    4244  } 
    4345 
    44   protected function tearDown() { 
     46  protected function tearDown() 
     47  { 
    4548    parent::tearDown(); 
    4649  } 
    4750 
    4851  ///////////////////////////////////////// 
    49   public function testGetOrderDetail_存在しない受注IDを指定した場合_結果が空になる() { 
     52  public function testGetOrderDetail_存在しない受注IDを指定した場合_結果が空になる() 
     53  { 
    5054    $order_id = '9999'; 
    5155 
     
    5660  } 
    5761 
    58   public function testGetOrderDetail_存在する受注IDを指定した場合_対応する受注詳細情報が取得できる() { 
     62  public function testGetOrderDetail_存在する受注IDを指定した場合_対応する受注詳細情報が取得できる() 
     63  { 
    5964    $order_id = '1001'; 
    6065 
     
    102107  } 
    103108 
    104   public function testGetOrderDetail_ステータス取得フラグがOFFのの場合_ステータス以外の情報が取得できる() { 
     109  public function testGetOrderDetail_ステータス取得フラグがOFFのの場合_ステータス以外の情報が取得できる() 
     110  { 
    105111    $order_id = '1001'; 
    106112 
Note: See TracChangeset for help on using the changeset viewer.