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

    r22206 r22567  
    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 { 
     35class SC_Utils_Test extends PHPUnit_Framework_TestCase  
     36{ 
    3637 
    3738    // }}} 
     
    4344     * 変換無し 
    4445     */ 
    45     function testGetRealURL_変換無し() { 
     46    function testGetRealURL_変換無し() 
     47    { 
    4648        $url = "http://www.example.jp/admin/index.php"; 
    4749 
     
    5254    } 
    5355 
    54     function testGetRealURL_変換有() { 
     56    function testGetRealURL_変換有() 
     57    { 
    5558        $url = "http://www.example.jp/admin/../index.php"; 
    5659 
     
    6164    } 
    6265 
    63     function testGetRealURL_空のディレクトリ() { 
     66    function testGetRealURL_空のディレクトリ() 
     67    { 
    6468        $url = "http://www.example.jp/admin/..///index.php"; 
    6569 
     
    7074    } 
    7175 
    72     function testGetRealURL_Dotのディレクトリ() { 
     76    function testGetRealURL_Dotのディレクトリ() 
     77    { 
    7378        $url = "http://www.example.jp/admin/././../index.php"; 
    7479 
     
    7984    } 
    8085 
    81     function testIsBlank() { 
     86    function testIsBlank() 
     87    { 
    8288        $val = ""; 
    8389        $this->assertTrue(SC_Utils::isBlank($val)); 
     
    122128    } 
    123129 
    124     function testIsAbsoluteRealPath() { 
     130    function testIsAbsoluteRealPath() 
     131    { 
    125132        // for *NIX 
    126133        if (strpos(PHP_OS, 'WIN') === false) { 
     
    148155    } 
    149156 
    150     function testRecursiveMkdir() { 
     157    function testRecursiveMkdir() 
     158    { 
    151159        $tmp_dir = sys_get_temp_dir(); 
    152160        $dir = '/foo/bar'; 
Note: See TracChangeset for help on using the changeset viewer.