Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Helper_Purchase_isUsePointTest extends SC_Helper_Purchase_TestBase 
    35 { 
     34class SC_Helper_Purchase_isUsePointTest extends SC_Helper_Purchase_TestBase { 
    3635 
    37   protected function setUp() 
    38   { 
     36  protected function setUp() { 
    3937    parent::setUp(); 
    4038  } 
    4139 
    42   protected function tearDown() 
    43   { 
     40  protected function tearDown() { 
    4441    parent::tearDown(); 
    4542  } 
    4643 
    4744  ///////////////////////////////////////// 
    48   public function testIsUsePoint_ステータスがnullの場合_FALSEが返る() 
    49   { 
     45  public function testIsUsePoint_ステータスがnullの場合_FALSEが返る() { 
    5046    $this->expected = FALSE; 
    5147    $this->actual = SC_Helper_Purchase::isUsePoint(null); 
     
    5450  } 
    5551 
    56   public function testIsUsePoint_ステータスがキャンセルの場合_FALSEが返る() 
    57   { 
     52  public function testIsUsePoint_ステータスがキャンセルの場合_FALSEが返る() { 
    5853    $this->expected = FALSE; 
    5954    $this->actual = SC_Helper_Purchase::isUsePoint(ORDER_CANCEL); 
     
    6358 
    6459  // TODO 要確認:本当にキャンセルのとき以外はすべてTRUEで良いのか、現在の使われ方の都合か 
    65   public function testIsUsePoint_ステータスがキャンセル以外の場合_TRUEが返る() 
    66   { 
     60  public function testIsUsePoint_ステータスがキャンセル以外の場合_TRUEが返る() { 
    6761    $this->expected = TRUE; 
    6862    $this->actual = SC_Helper_Purchase::isUsePoint(ORDER_NEW); 
Note: See TracChangeset for help on using the changeset viewer.