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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_getRealURLTest extends Common_TestCase 
    35 { 
     34class SC_Utils_getRealURLTest 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  } 
     
    4845  ///////////////////////////////////////// 
    4946  // TODO ポート番号のためのコロンが必ず入ってしまうのはOK? 
    50   public function testGetRealURL_親ディレクトリへの参照を含む場合_正しくパースできる() 
    51   { 
     47  public function testGetRealURL_親ディレクトリへの参照を含む場合_正しくパースできる() { 
    5248    $input = 'http://www.example.jp/aaa/../index.php'; 
    5349    $this->expected = 'http://www.example.jp:/index.php'; 
     
    5753  } 
    5854 
    59   public function testGetRealURL_親ディレクトリへの参照を複数回含む場合_正しくパースできる() 
    60   { 
     55  public function testGetRealURL_親ディレクトリへの参照を複数回含む場合_正しくパースできる() { 
    6156    $input = 'http://www.example.jp/aaa/bbb/../../ccc/ddd/../index.php'; 
    6257    $this->expected = 'http://www.example.jp:/ccc/index.php'; 
     
    6661  } 
    6762 
    68   public function testGetRealURL_カレントディレクトリへの参照を含む場合_正しくパースできる() 
    69   { 
     63  public function testGetRealURL_カレントディレクトリへの参照を含む場合_正しくパースできる() { 
    7064    $input = 'http://www.example.jp/aaa/./index.php'; 
    7165    $this->expected = 'http://www.example.jp:/aaa/index.php'; 
     
    7569  } 
    7670 
    77   public function testGetRealURL_httpsの場合_正しくパースできる() 
    78   { 
     71  public function testGetRealURL_httpsの場合_正しくパースできる() { 
    7972    $input = 'https://www.example.jp/aaa/./index.php'; 
    8073    $this->expected = 'https://www.example.jp:/aaa/index.php'; 
Note: See TracChangeset for help on using the changeset viewer.