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

    r22567 r22796  
    3333 * @version $Id$ 
    3434 */ 
    35 class SC_Utils_sfGetUniqRandomIdTest extends Common_TestCase 
    36 { 
     35class SC_Utils_sfGetUniqRandomIdTest extends Common_TestCase { 
    3736 
    3837 
    39   protected function setUp() 
    40   { 
     38  protected function setUp() { 
    4139    // parent::setUp(); 
    4240  } 
    4341 
    44   protected function tearDown() 
    45   { 
     42  protected function tearDown() { 
    4643    // parent::tearDown(); 
    4744  } 
    4845 
    4946  ///////////////////////////////////////// 
    50   public function test_prefix指定が無い場合_21文字のランダムな文字列が生成される() 
    51   { 
     47  public function test_prefix指定が無い場合_21文字のランダムな文字列が生成される() { 
    5248    $output1 = SC_Utils::sfGetUniqRandomId(); 
    5349    $output2 = SC_Utils::sfGetUniqRandomId(); 
     
    5854  } 
    5955 
    60   public function test_prefix指定がある場合_prefixのあとに21文字のランダムな文字列が生成される() 
    61   { 
     56  public function test_prefix指定がある場合_prefixのあとに21文字のランダムな文字列が生成される() { 
    6257    $output1 = SC_Utils::sfGetUniqRandomId('hello'); 
    6358    $output2 = SC_Utils::sfGetUniqRandomId('hello'); 
Note: See TracChangeset for help on using the changeset viewer.