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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfDispDBDateTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfDispDBDateTest 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 testSfDispDBDate_年が指定されていない場合_0バイト文字列が返る() 
    50   { 
     46  public function testSfDispDBDate_年が指定されていない場合_0バイト文字列が返る() { 
    5147    $dbdate = '-01-23 01:12:24'; 
    5248     
     
    5652    $this->verify(); 
    5753  } 
    58   public function testSfDispDBDate_月が指定されていない場合_0バイト文字列が返る() 
    59   { 
     54  public function testSfDispDBDate_月が指定されていない場合_0バイト文字列が返る() { 
    6055    $dbdate = '2012--23 01:12:24'; 
    6156     
     
    6560    $this->verify(); 
    6661  } 
    67   public function testSfDispDBDate_日が指定されていない場合_0バイト文字列が返る() 
    68   { 
     62  public function testSfDispDBDate_日が指定されていない場合_0バイト文字列が返る() { 
    6963    $dbdate = '2012-01- 01:12:24'; 
    7064     
     
    7468    $this->verify(); 
    7569  } 
    76   public function testSfDispDBDate_年月日すべて存在する場合_フォーマット済み文字列が返る() 
    77   { 
     70  public function testSfDispDBDate_年月日すべて存在する場合_フォーマット済み文字列が返る() { 
    7871    $dbdate = '2012-1-23 1:12:24'; 
    7972     
     
    8376    $this->verify(); 
    8477  } 
    85   public function testSfDispDBDate_時刻表示フラグがOFFの場合_時刻なしのフォーマット済み文字列が返る() 
    86   { 
     78  public function testSfDispDBDate_時刻表示フラグがOFFの場合_時刻なしのフォーマット済み文字列が返る() { 
    8779    $dbdate = '2012-1-23 1:12:24'; 
    8880     
Note: See TracChangeset for help on using the changeset viewer.