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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_getOrderTest extends SC_Helper_Purchase_TestBase { 
     34class SC_Helper_Purchase_getOrderTest extends SC_Helper_Purchase_TestBase 
     35{ 
    3536 
    3637 
    37   protected function setUp() { 
     38  protected function setUp() 
     39  { 
    3840    parent::setUp(); 
    3941    $this->setUpOrder(); 
    4042  } 
    4143 
    42   protected function tearDown() { 
     44  protected function tearDown() 
     45  { 
    4346    parent::tearDown(); 
    4447  } 
    4548 
    4649  ///////////////////////////////////////// 
    47   public function testGetOrder_存在しない受注IDを指定した場合_結果が空になる() { 
     50  public function testGetOrder_存在しない受注IDを指定した場合_結果が空になる() 
     51  { 
    4852    $order_id = '9999'; 
    4953 
     
    5458  } 
    5559 
    56   public function testGetOrder_存在しない顧客IDを指定した場合_結果が空になる() { 
     60  public function testGetOrder_存在しない顧客IDを指定した場合_結果が空になる() 
     61  { 
    5762    $order_id = '1002'; 
    5863    $customer_id = '9999'; 
     
    6469  } 
    6570 
    66   public function testGetOrder_顧客IDを指定しなかった場合_受注IDに対応する結果が取得できる() { 
     71  public function testGetOrder_顧客IDを指定しなかった場合_受注IDに対応する結果が取得できる() 
     72  { 
    6773    $order_id = '1002'; 
    6874 
     
    7884  } 
    7985 
    80   public function testGetOrder_存在する顧客IDを指定した場合_対応する結果が取得できる() { 
     86  public function testGetOrder_存在する顧客IDを指定した場合_対応する結果が取得できる() 
     87  { 
    8188    $order_id = '1002'; 
    8289    $customer_id = '1002'; 
Note: See TracChangeset for help on using the changeset viewer.