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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfGetCommaListTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfGetCommaListTest extends Common_TestCase { 
    3635 
    37   protected function setUp() 
    38   { 
     36  protected function setUp() { 
    3937    parent::setUp(); 
    4038  } 
    4139 
    42   protected function tearDown() 
    43   { 
     40  protected function tearDown() { 
    4441    parent::tearDown(); 
    4542  } 
    4643 
    4744  ///////////////////////////////////////// 
    48   public function testSfGetCommaList_配列が空の場合_FALSEが返る() 
    49   { 
     45  public function testSfGetCommaList_配列が空の場合_FALSEが返る() { 
    5046    $this->expected = FALSE; 
    5147    $this->actual = SC_Utils::sfGetCommaList(array()); 
     
    5450  } 
    5551 
    56   public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される() 
    57   { 
     52  public function testSfGetCommaList_スペースフラグが立っている場合_スペース付きで連結される() { 
    5853    $this->expected = 'りんご, ミカン, バナナ'; 
    5954    $this->actual = SC_Utils::sfGetCommaList( 
     
    6560  } 
    6661 
    67   public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される() 
    68   { 
     62  public function testSfGetCommaList_スペースフラグが倒れている場合_スペース付きで連結される() { 
    6963    $this->expected = 'りんご,ミカン,バナナ'; 
    7064    $this->actual = SC_Utils::sfGetCommaList( 
     
    7771 
    7872  // TODO 要確認:arrpopの役割 
    79   public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される() 
    80   { 
     73  public function testSfGetCommaList_除外リストが指定されている場合_スペース付きで連結される() { 
    8174    $this->expected = 'りんご, バナナ'; 
    8275    $this->actual = SC_Utils::sfGetCommaList( 
Note: See TracChangeset for help on using the changeset viewer.