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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfRmDupSlashTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfRmDupSlashTest 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 testSfRmDupSlash_非SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() 
    50   { 
     46  public function testSfRmDupSlash_非SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() { 
    5147    $input = 'http://www.example.co.jp///aaa//bb/co.php'; 
    5248    $this->expected = 'http://www.example.co.jp/aaa/bb/co.php'; 
     
    5652  } 
    5753 
    58   public function testSfRmDupSlash_SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() 
    59   { 
     54  public function testSfRmDupSlash_SSLの場合_スキーマ部分以外の重複スラッシュが1つになる() { 
    6055    $input = 'https://www.example.co.jp///aaa//bb/co.php'; 
    6156    $this->expected = 'https://www.example.co.jp/aaa/bb/co.php'; 
     
    6560  } 
    6661 
    67   public function testSfRmDupSlash_上記以外の場合_すべての重複スラッシュが1つになる() 
    68   { 
     62  public function testSfRmDupSlash_上記以外の場合_すべての重複スラッシュが1つになる() { 
    6963    $input = 'hoge//www.example.co.jp///aaa//bb/co.php'; 
    7064    $this->expected = 'hoge/www.example.co.jp/aaa/bb/co.php'; 
Note: See TracChangeset for help on using the changeset viewer.