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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfArrCombineTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfArrCombineTest 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 testSfArrCombine_入力の配列が空の場合_結果も空になる() 
    50   { 
     46  public function testSfArrCombine_入力の配列が空の場合_結果も空になる() { 
    5147    $keys = array(); 
    5248    $values = array(); 
     
    5955 
    6056  // TODO 要確認 キーの方が短い場合はエラーで良いのでは? 
    61   public function testSfArrCombine_入力のキー配列の方が短い場合_余った値の配列の要素は無視される() 
    62   { 
     57  public function testSfArrCombine_入力のキー配列の方が短い場合_余った値の配列の要素は無視される() { 
    6358    $keys = array('apple', 'banana'); 
    6459    $values = array('りんご', 'バナナ', 'オレンジ', '梨'); 
     
    7469  } 
    7570 
    76   public function testSfArrCombine_入力のキー配列の方が長い場合_余ったキーの配列の要素は空になる() 
    77   { 
     71  public function testSfArrCombine_入力のキー配列の方が長い場合_余ったキーの配列の要素は空になる() { 
    7872    $keys = array('apple', 'banana', 'orange', 'pear'); 
    7973    $values = array('りんご', 'バナナ'); 
Note: See TracChangeset for help on using the changeset viewer.