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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfTermMonthTest extends Common_TestCase { 
     34class SC_Utils_sfTermMonthTest extends Common_TestCase 
     35{ 
    3536 
    3637 
    37   protected function setUp() { 
     38  protected function setUp() 
     39  { 
    3840    // parent::setUp(); 
    3941  } 
    4042 
    41   protected function tearDown() { 
     43  protected function tearDown() 
     44  { 
    4245    // parent::tearDown(); 
    4346  } 
    4447 
    4548  ///////////////////////////////////////// 
    46   public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる() { 
     49  public function testSfTermMonth_締め日が月末より早い場合_設定した締め日の通りになる() 
     50  { 
    4751    $this->expected = array('2012/9/16', '2012/10/15 23:59:59'); 
    4852    $this->actual = SC_Utils::sfTermMonth(2012, 10, 15); 
     
    5155  } 
    5256 
    53   public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる() { 
     57  public function testSfTermMonth_該当月の末日が締め日より早い場合_末日に合わせられる() 
     58  { 
    5459    $this->expected = array('2012/9/1', '2012/9/30 23:59:59'); 
    5560    $this->actual = SC_Utils::sfTermMonth(2012, 9, 31); 
     
    5863  } 
    5964 
    60   public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる() { 
     65  public function testSfTermMonth_前月の末日が締め日より早い場合_末日に合わせられる() 
     66  { 
    6167    $this->expected = array('2012/10/1', '2012/10/31 23:59:59'); 
    6268    $this->actual = SC_Utils::sfTermMonth(2012, 10, 31); 
     
    6571  } 
    6672 
    67   public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる() { 
     73  public function testSfTermMonth_年をまたぐ場合_前月が前年十二月になる() 
     74  { 
    6875    $this->expected = array('2012/12/16', '2013/1/15 23:59:59'); 
    6976    $this->actual = SC_Utils::sfTermMonth(2013, 1, 15); 
Note: See TracChangeset for help on using the changeset viewer.