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

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Session_checkUniqIdTest extends Common_TestCase 
    28 { 
     27class SC_Session_checkUniqIdTest 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 testCheckUniqId_POST値がない場合_True() 
    44     { 
     40    public function testCheckUniqId_POST値がない場合_True() { 
    4541        $_POST = null; 
    4642        $this->expected = true; 
     
    4945    } 
    5046     
    51     public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True() 
    52     { 
     47    public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True() { 
    5348        $_POST['uniqid'] = '1234567890'; 
    5449        $_SESSION['site']['uniqid'] = '1234567890'; 
     
    5954    } 
    6055     
    61     public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False() 
    62     { 
     56    public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False() { 
    6357        $_POST['uniqid'] = '0987654321'; 
    6458        $_SESSION['site']['uniqid'] = '1234567890'; 
Note: See TracChangeset for help on using the changeset viewer.