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/test/class/util/SC_Utils_Test.php

    r22567 r22796  
    3333 * @version $Id:LC_Page_Test.php 15116 2007-07-23 11:32:53Z nanasess $ 
    3434 */ 
    35 class SC_Utils_Test extends PHPUnit_Framework_TestCase  
    36 { 
     35class SC_Utils_Test extends PHPUnit_Framework_TestCase { 
    3736 
    3837    // }}} 
     
    4443     * 変換無し 
    4544     */ 
    46     function testGetRealURL_変換無し() 
    47     { 
     45    function testGetRealURL_変換無し() { 
    4846        $url = "http://www.example.jp/admin/index.php"; 
    4947 
     
    5452    } 
    5553 
    56     function testGetRealURL_変換有() 
    57     { 
     54    function testGetRealURL_変換有() { 
    5855        $url = "http://www.example.jp/admin/../index.php"; 
    5956 
     
    6461    } 
    6562 
    66     function testGetRealURL_空のディレクトリ() 
    67     { 
     63    function testGetRealURL_空のディレクトリ() { 
    6864        $url = "http://www.example.jp/admin/..///index.php"; 
    6965 
     
    7470    } 
    7571 
    76     function testGetRealURL_Dotのディレクトリ() 
    77     { 
     72    function testGetRealURL_Dotのディレクトリ() { 
    7873        $url = "http://www.example.jp/admin/././../index.php"; 
    7974 
     
    8479    } 
    8580 
    86     function testIsBlank() 
    87     { 
     81    function testIsBlank() { 
    8882        $val = ""; 
    8983        $this->assertTrue(SC_Utils::isBlank($val)); 
     
    128122    } 
    129123 
    130     function testIsAbsoluteRealPath() 
    131     { 
     124    function testIsAbsoluteRealPath() { 
    132125        // for *NIX 
    133126        if (strpos(PHP_OS, 'WIN') === false) { 
     
    155148    } 
    156149 
    157     function testRecursiveMkdir() 
    158     { 
     150    function testRecursiveMkdir() { 
    159151        $tmp_dir = sys_get_temp_dir(); 
    160152        $dir = '/foo/bar'; 
Note: See TracChangeset for help on using the changeset viewer.