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/SC_SiteSession/SC_SiteSession_isPrepageTest.php

    r22206 r22567  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Session_isPrepageTest extends Common_TestCase { 
     27class SC_Session_isPrepageTest extends Common_TestCase 
     28{ 
    2829 
    29     protected function setUp() { 
     30    protected function setUp() 
     31    { 
    3032        parent::setUp(); 
    3133        $this->objSiteSession = new SC_SiteSession_Ex(); 
    3234    } 
    3335 
    34     protected function tearDown() { 
     36    protected function tearDown() 
     37    { 
    3538        parent::tearDown(); 
    3639    } 
     
    3841    ///////////////////////////////////////// 
    3942 
    40     public function testIsPrepage_sessionが空の場合_false() { 
     43    public function testIsPrepage_sessionが空の場合_false() 
     44    { 
    4145        $this->expected = false; 
    4246        $this->actual = $this->objSiteSession->isPrepage(); 
     
    4448    } 
    4549     
    46     public function testIsPrepage_prepageとnowpageが違う場合_false() { 
     50    public function testIsPrepage_prepageとnowpageが違う場合_false() 
     51    { 
    4752        $this->expected = false; 
    4853        $_SESSION['site']['pre_page'] = 'test.php'; 
     
    5156    } 
    5257     
    53     public function testIsPrepage_prepageとnowpageが同じの場合_true() { 
     58    public function testIsPrepage_prepageとnowpageが同じの場合_true() 
     59    { 
    5460        $this->expected = true; 
    5561        $_SESSION['site']['pre_page'] = $_SERVER['SCRIPT_NAME']; 
     
    5864    } 
    5965     
    60     public function testIsPrepage_pre_regist_successがtrueの場合_true() { 
     66    public function testIsPrepage_pre_regist_successがtrueの場合_true() 
     67    { 
    6168        $this->expected = true; 
    6269        $_SESSION['site']['pre_page'] = 'test.php'; 
Note: See TracChangeset for help on using the changeset viewer.