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/util/SC_Utils/SC_Utils_sfCalcIncTaxTest.php

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfCalcIncTaxTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfCalcIncTaxTest extends Common_TestCase { 
    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 testSfCalcIncTax_四捨五入の場合_四捨五入の結果になる() 
    49   { 
     45  public function testSfCalcIncTax_四捨五入の場合_四捨五入の結果になる() { 
    5046    $this->expected = array(141, 152); 
    5147    $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 1); // 1:四捨五入 
     
    5551  } 
    5652 
    57   public function testSfCalcIncTax_切り捨ての場合_切り捨ての結果になる() 
    58   { 
     53  public function testSfCalcIncTax_切り捨ての場合_切り捨ての結果になる() { 
    5954    $this->expected = array(142, 153); 
    6055    $this->actual[0] = SC_Utils::sfCalcIncTax(140, 2, 2); // 2:切り捨て 
     
    6459  } 
    6560 
    66   public function testSfCalcIncTax_切り上げの場合_切り上げの結果になる() 
    67   { 
     61  public function testSfCalcIncTax_切り上げの場合_切り上げの結果になる() { 
    6862    $this->expected = array(142, 152); 
    6963    $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 3); // 3:切り上げ 
     
    7367  } 
    7468 
    75   public function testSfCalcIncTax_それ以外の場合_切り上げの結果になる() 
    76   { 
     69  public function testSfCalcIncTax_それ以外の場合_切り上げの結果になる() { 
    7770    $this->expected = array(142, 152); 
    7871    $this->actual[0] = SC_Utils::sfCalcIncTax(140, 1, 4); 
Note: See TracChangeset for help on using the changeset viewer.