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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfGetCommaListTest extends Common_TestCase { 
     34class SC_Utils_sfGetCommaListTest extends Common_TestCase 
     35{ 
    3536 
    36   protected function setUp() { 
     37  protected function setUp() 
     38  { 
    3739    parent::setUp(); 
    3840  } 
    3941 
    40   protected function tearDown() { 
     42  protected function tearDown() 
     43  { 
    4144    parent::tearDown(); 
    4245  } 
    4346 
    4447  ///////////////////////////////////////// 
    45   public function testSfGetCommaList_配列が空の場合_FALSEが返る() { 
     48  public function testSfGetCommaList_配列が空の場合_FALSEが返る() 
     49  { 
    4650    $this->expected = FALSE; 
    4751    $this->actual = SC_Utils::sfGetCommaList(array()); 
     
    5054  } 
    5155 
    52   public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される() { 
     56  public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される() 
     57  { 
    5358    $this->expected = 'りんご, ミカン, バナナ'; 
    5459    $this->actual = SC_Utils::sfGetCommaList( 
     
    6065  } 
    6166 
    62   public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される() { 
     67  public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される() 
     68  { 
    6369    $this->expected = 'りんご,ミカン,バナナ'; 
    6470    $this->actual = SC_Utils::sfGetCommaList( 
     
    7177 
    7278  // TODO 要確認:arrpopの役割 
    73   public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される() { 
     79  public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される() 
     80  { 
    7481    $this->expected = 'りんご, バナナ'; 
    7582    $this->actual = SC_Utils::sfGetCommaList( 
Note: See TracChangeset for help on using the changeset viewer.