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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfGetRandomStringTest extends Common_TestCase { 
     34class SC_Utils_sfGetRandomStringTest 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  } 
     
    4447  ///////////////////////////////////////// 
    4548  // ランダムな文字列取得なので、文字列長のみ確認します。 
    46   public function testSfGetRandomString_文字列長未指定の場合_長さ1の文字列が取得できる() { 
     49  public function testSfGetRandomString_文字列長未指定の場合_長さ1の文字列が取得できる() 
     50  { 
    4751    $this->expected = 1; 
    4852    $this->actual = strlen(SC_Utils::sfGetRandomString()); 
     
    5155  } 
    5256 
    53   public function testSfGetRandomString_文字列長指定ありの場合_指定した長さの文字列が取得できる() { 
     57  public function testSfGetRandomString_文字列長指定ありの場合_指定した長さの文字列が取得できる() 
     58  { 
    5459    $this->expected = 10; 
    5560    $this->actual = strlen(SC_Utils::sfGetRandomString(10)); 
Note: See TracChangeset for help on using the changeset viewer.