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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_recursiveMkdirTest extends Common_TestCase 
    35 { 
     34class SC_Utils_recursiveMkdirTest extends Common_TestCase { 
    3635 
    3736  static $TMP_DIR; 
    3837 
    39   protected function setUp() 
    40   { 
     38  protected function setUp() { 
    4139    self::$TMP_DIR = realpath(dirname(__FILE__)) . "/../../../tmp"; 
    4240    SC_Helper_FileManager::deleteFile(self::$TMP_DIR); 
     
    4543  } 
    4644 
    47   protected function tearDown() 
    48   { 
     45  protected function tearDown() { 
    4946    // parent::tearDown(); 
    5047  } 
    5148 
    5249  ///////////////////////////////////////// 
    53   public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる() 
    54   { 
     50  public function testRecursiveMkdir_パーミッションを指定した場合_指定のパーミッションでディレクトリが作られる() { 
    5551    $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/"; 
    5652    $mode = 0755; 
     
    6359  } 
    6460 
    65   public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる() 
    66   { 
     61  public function testRecursiveMkdir_パーミッションを指定しない場合_0777でディレクトリが作られる() { 
    6762    $path = realpath(dirname(__FILE__)) . "/../../../tmp/dir1/dir2/dir3/"; 
    6863 
Note: See TracChangeset for help on using the changeset viewer.