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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_isAddPointTest extends SC_Helper_Purchase_TestBase { 
     34class SC_Helper_Purchase_isAddPointTest 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 testIsAddPoint_新規注文の場合_FALSEが返る() { 
     48  public function testIsAddPoint_新規注文の場合_FALSEが返る() 
     49  { 
    4650    $this->expected = FALSE; 
    4751    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_NEW); 
     
    5054  } 
    5155 
    52   public function testIsAddPoint_入金待ちの場合_FALSEが返る() { 
     56  public function testIsAddPoint_入金待ちの場合_FALSEが返る() 
     57  { 
    5358    $this->expected = FALSE; 
    5459    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PAY_WAIT); 
     
    5762  } 
    5863 
    59   public function testIsAddPoint_入金済みの場合_FALSEが返る() { 
     64  public function testIsAddPoint_入金済みの場合_FALSEが返る() 
     65  { 
    6066    $this->expected = FALSE; 
    6167    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PRE_END); 
     
    6470  } 
    6571 
    66   public function testIsAddPoint_キャンセルの場合_FALSEが返る() { 
     72  public function testIsAddPoint_キャンセルの場合_FALSEが返る() 
     73  { 
    6774    $this->expected = FALSE; 
    6875    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_CANCEL); 
     
    7178  } 
    7279 
    73   public function testIsAddPoint_取り寄せ中の場合_FALSEが返る() { 
     80  public function testIsAddPoint_取り寄せ中の場合_FALSEが返る() 
     81  { 
    7482    $this->expected = FALSE; 
    7583    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_BACK_ORDER); 
     
    7886  } 
    7987 
    80   public function testIsAddPoint_発送済みの場合_TRUEが返る() { 
     88  public function testIsAddPoint_発送済みの場合_TRUEが返る() 
     89  { 
    8190    $this->expected = TRUE; 
    8291    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_DELIV); 
     
    8594  } 
    8695 
    87   public function testIsAddPoint_その他の場合_FALSEが返る() { 
     96  public function testIsAddPoint_その他の場合_FALSEが返る() 
     97  { 
    8898    $this->expected = FALSE; 
    8999    $this->actual = SC_Helper_Purchase::isAddPoint(ORDER_PENDING); 
Note: See TracChangeset for help on using the changeset viewer.