Ignore:
Timestamp:
2013/05/02 18:11:36 (13 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/SC_SiteSession/SC_SiteSession_isPrepageTest.php

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Session_isPrepageTest extends Common_TestCase 
    28 { 
     27class SC_Session_isPrepageTest extends Common_TestCase { 
    2928 
    30     protected function setUp() 
    31     { 
     29    protected function setUp() { 
    3230        parent::setUp(); 
    3331        $this->objSiteSession = new SC_SiteSession_Ex(); 
    3432    } 
    3533 
    36     protected function tearDown() 
    37     { 
     34    protected function tearDown() { 
    3835        parent::tearDown(); 
    3936    } 
     
    4138    ///////////////////////////////////////// 
    4239 
    43     public function testIsPrepage_sessionが空の場合_false() 
    44     { 
     40    public function testIsPrepage_sessionが空の場合_false() { 
    4541        $this->expected = false; 
    4642        $this->actual = $this->objSiteSession->isPrepage(); 
     
    4844    } 
    4945     
    50     public function testIsPrepage_prepageとnowpageが違う場合_false() 
    51     { 
     46    public function testIsPrepage_prepageとnowpageが違う場合_false() { 
    5247        $this->expected = false; 
    5348        $_SESSION['site']['pre_page'] = 'test.php'; 
     
    5651    } 
    5752     
    58     public function testIsPrepage_prepageとnowpageが同じの場合_true() 
    59     { 
     53    public function testIsPrepage_prepageとnowpageが同じの場合_true() { 
    6054        $this->expected = true; 
    6155        $_SESSION['site']['pre_page'] = $_SERVER['SCRIPT_NAME']; 
     
    6458    } 
    6559     
    66     public function testIsPrepage_pre_regist_successがtrueの場合_true() 
    67     { 
     60    public function testIsPrepage_pre_regist_successがtrueの場合_true() { 
    6861        $this->expected = true; 
    6962        $_SESSION['site']['pre_page'] = 'test.php'; 
Note: See TracChangeset for help on using the changeset viewer.