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/tests/class/util/SC_Utils/SC_Utils_recursiveMkDirTest.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_recursiveMkdirTest extends Common_TestCase { 
     34class SC_Utils_recursiveMkdirTest extends Common_TestCase 
     35{ 
    3536 
    3637  static $TMP_DIR; 
    3738 
    38   protected function setUp() { 
     39  protected function setUp() 
     40  { 
    3941    self::$TMP_DIR = realpath(dirname(__FILE__)) . "/../../../tmp"; 
    4042    SC_Helper_FileManager::deleteFile(self::$TMP_DIR); 
     
    4345  } 
    4446 
    45   protected function tearDown() { 
     47  protected function tearDown() 
     48  { 
    4649    // parent::tearDown(); 
    4750  } 
    4851 
    4952  ///////////////////////////////////////// 
    50   public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる() { 
     53  public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる() 
     54  { 
    5155    $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/"; 
    5256    $mode = 0755; 
     
    5963  } 
    6064 
    61   public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる() { 
     65  public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる() 
     66  { 
    6267    $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/"; 
    6368 
Note: See TracChangeset for help on using the changeset viewer.