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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class SC_Utils_sfNoImageMainTest extends Common_TestCase 
    35 { 
     34class SC_Utils_sfNoImageMainTest 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  } 
    4744 
    4845  ///////////////////////////////////////// 
    49   public function testSfNoImageMain_ファイル名が空の場合_デフォルトのファイル名が返る() 
    50   { 
     46  public function testSfNoImageMain_ファイル名が空の場合_デフォルトのファイル名が返る() { 
    5147    $this->expected = 'noimage_main.png'; 
    5248    $this->actual = SC_Utils::sfNoImageMain(''); 
     
    5551  } 
    5652 
    57   public function testSfNoImageMain_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る() 
    58   { 
     53  public function testSfNoImageMain_ディレクトリが指定されている場合_そのディレクトリ以下でデフォルトのファイル名が返る() { 
    5954    $this->expected = 'aaa/bbb/noimage_main.png'; 
    6055    $this->actual = SC_Utils::sfNoImageMain('aaa/bbb/'); 
     
    6358  } 
    6459 
    65   public function testSfNoImageMain_ファイル名が指定されている場合_指定されたファイル名が返る() 
    66   { 
     60  public function testSfNoImageMain_ファイル名が指定されている場合_指定されたファイル名が返る() { 
    6761    $this->expected = 'aaa/bbb/ccc.png'; 
    6862    $this->actual = SC_Utils::sfNoImageMain('aaa/bbb/ccc.png'); 
Note: See TracChangeset for help on using the changeset viewer.