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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfTermMonthTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfTermMonthTest extends Common_TestCase { 
    3635 
    3736 
    38   protected function setUp() 
    39   { 
     37  protected function setUp() { 
    4038    // parent::setUp(); 
    4139  } 
    4240 
    43   protected function tearDown() 
    44   { 
     41  protected function tearDown() { 
    4542    // parent::tearDown(); 
    4643  } 
    4744 
    4845  ///////////////////////////////////////// 
    49   public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる() 
    50   { 
     46  public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる() { 
    5147    $this->expected = array('2012/9/16', '2012/10/15 23:59:59'); 
    5248    $this->actual = SC_Utils::sfTermMonth(2012, 10, 15); 
     
    5551  } 
    5652 
    57   public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる() 
    58   { 
     53  public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる() { 
    5954    $this->expected = array('2012/9/1', '2012/9/30 23:59:59'); 
    6055    $this->actual = SC_Utils::sfTermMonth(2012, 9, 31); 
     
    6358  } 
    6459 
    65   public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる() 
    66   { 
     60  public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる() { 
    6761    $this->expected = array('2012/10/1', '2012/10/31 23:59:59'); 
    6862    $this->actual = SC_Utils::sfTermMonth(2012, 10, 31); 
     
    7165  } 
    7266 
    73   public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる() 
    74   { 
     67  public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる() { 
    7568    $this->expected = array('2012/12/16', '2013/1/15 23:59:59'); 
    7669    $this->actual = SC_Utils::sfTermMonth(2013, 1, 15); 
Note: See TracChangeset for help on using the changeset viewer.