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

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Session_getUniqIdTest extends Common_TestCase 
    28 { 
     27class SC_Session_getUniqIdTest extends Common_TestCase { 
    2928 
    30     protected function setUp() 
    31     { 
     29    protected function setUp() { 
    3230        parent::setUp(); 
    3331        $this->objSiteSession = new SC_SiteSession_Mock(); 
    3432    } 
    3533 
    36     protected function tearDown() 
    37     { 
     34    protected function tearDown() { 
    3835        parent::tearDown(); 
    3936    } 
     
    4138    ///////////////////////////////////////// 
    4239 
    43     public function testGetUniqId_設定済みのユニークなID取得する() 
    44     { 
     40    public function testGetUniqId_設定済みのユニークなID取得する() { 
    4541        $_SESSION['site']['uniqid'] = '0987654321'; 
    4642        $this->expected = '0987654321'; 
     
    4945    } 
    5046     
    51     public function testGetUniqId_新たにユニークなID取得する() 
    52     { 
     47    public function testGetUniqId_新たにユニークなID取得する() { 
    5348        $_SESSION['site']['uniqid'] = ''; 
    5449        $this->expected = '1234567890'; 
     
    5853} 
    5954 
    60 class SC_SiteSession_Mock extends SC_SiteSession_Ex 
    61 { 
    62     function setUniqId() 
    63     { 
     55class SC_SiteSession_Mock extends SC_SiteSession_Ex { 
     56    function setUniqId() { 
    6457        $_SESSION['site']['uniqid'] = '1234567890'; 
    6558    } 
Note: See TracChangeset for help on using the changeset viewer.