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

    r22206 r22567  
    3333 * @version $Id$ 
    3434 */ 
    35 class SC_Utils_sfFlushTest extends Common_TestCase { 
     35class SC_Utils_sfFlushTest extends Common_TestCase 
     36{ 
    3637 
    3738 
    38   protected function setUp() { 
     39  protected function setUp() 
     40  { 
    3941    // parent::setUp(); 
    4042  } 
    4143 
    42   protected function tearDown() { 
     44  protected function tearDown() 
     45  { 
    4346    // parent::tearDown(); 
    4447  } 
    4548 
    4649  ///////////////////////////////////////// 
    47   public function testSfFlush_IEの場合_フラッシュされる() { 
     50  public function testSfFlush_IEの場合_フラッシュされる() 
     51  { 
    4852    $this->expectOutputString(''); 
    4953    echo 'Hello, World!!'; 
     
    5155  } 
    5256 
    53   public function testSfFlush_文字列を指定した場合_フラッシュされる() { 
     57  public function testSfFlush_文字列を指定した場合_フラッシュされる() 
     58  { 
    5459    $this->expectOutputString(''); 
    5560    echo 'Hello, World!!'; 
     
    5762  } 
    5863 
    59   public function testSfFlush_参考_この関数を呼ばないとバッファに出力が残る() { 
     64  public function testSfFlush_参考_この関数を呼ばないとバッファに出力が残る() 
     65  { 
    6066    $this->expectOutputString('Hello, World!!'); 
    6167    echo 'Hello, World!!'; 
Note: See TracChangeset for help on using the changeset viewer.