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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfArrKeyValueTest extends Common_TestCase { 
     34class SC_Utils_sfArrKeyValueTest extends Common_TestCase 
     35{ 
    3536 
    3637  var $arrList; 
     
    3839  var $valuename; 
    3940 
    40   protected function setUp() { 
     41  protected function setUp() 
     42  { 
    4143    // parent::setUp(); 
    4244 
     
    5153  } 
    5254 
    53   protected function tearDown() { 
     55  protected function tearDown() 
     56  { 
    5457    // parent::tearDown(); 
    5558  } 
    5659 
    5760  ///////////////////////////////////////// 
    58   public function testSfArrKeyValue_最大長が配列より短い場合_最大長でカットされる() { 
     61  public function testSfArrKeyValue_最大長が配列より短い場合_最大長でカットされる() 
     62  { 
    5963    $len_max = 3; 
    6064 
     
    6973  } 
    7074 
    71   public function testSfArrKeyValue_最大長が指定されていない場合_全要素が出力される() { 
     75  public function testSfArrKeyValue_最大長が指定されていない場合_全要素が出力される() 
     76  { 
    7277    $this->expected = array( 
    7378      '1011' => '2001', 
     
    8186  } 
    8287 
    83   public function testSfArrKeyValue_キーサイズが短い場合_キーサイズでカットされる() { 
     88  public function testSfArrKeyValue_キーサイズが短い場合_キーサイズでカットされる() 
     89  { 
    8490    $len_max = 5; 
    8591    $keysize = 1; 
Note: See TracChangeset for help on using the changeset viewer.