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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfGetTimestampTest extends Common_TestCase { 
     34class SC_Utils_sfGetTimestampTest 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 testSfGetTimestamp_年が設定されていない場合_0バイト文字列が返る() { 
     49  public function testSfGetTimestamp_年が設定されていない場合_0バイト文字列が返る() 
     50  { 
    4751    $year = ''; 
    4852    $month = '10'; 
     
    5458  } 
    5559 
    56   public function testSfGetTimestamp_月が設定されていない場合_0バイト文字列が返る() { 
     60  public function testSfGetTimestamp_月が設定されていない場合_0バイト文字列が返る() 
     61  { 
    5762    $year = '2012'; 
    5863    $month = ''; 
     
    6469  } 
    6570 
    66   public function testSfGetTimestamp_日が設定されていない場合_0バイト文字列が返る() { 
     71  public function testSfGetTimestamp_日が設定されていない場合_0バイト文字列が返る() 
     72  { 
    6773    $year = '1999'; 
    6874    $month = '09'; 
     
    7480  } 
    7581 
    76   public function testSfGetTimestamp_年月日すべて設定されている場合_連結された文字列が返る() { 
     82  public function testSfGetTimestamp_年月日すべて設定されている場合_連結された文字列が返る() 
     83  { 
    7784    $year = '1999'; 
    7885    $month = '09'; 
     
    8592  } 
    8693 
    87   public function testSfGetTimestamp_最終時刻フラグがONの場合_時刻が深夜のものになる() { 
     94  public function testSfGetTimestamp_最終時刻フラグがONの場合_時刻が深夜のものになる() 
     95  { 
    8896    $year = '1999'; 
    8997    $month = '09'; 
Note: See TracChangeset for help on using the changeset viewer.