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

    r22206 r22567  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Session_checkUniqIdTest extends Common_TestCase { 
     27class SC_Session_checkUniqIdTest 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 testCheckUniqId_POST値がない場合_True() { 
     43    public function testCheckUniqId_POST値がない場合_True() 
     44    { 
    4145        $_POST = null; 
    4246        $this->expected = true; 
     
    4549    } 
    4650     
    47     public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True() { 
     51    public function testCheckUniqId_POSTとセッションのUniqIDが一致する場合_True() 
     52    { 
    4853        $_POST['uniqid'] = '1234567890'; 
    4954        $_SESSION['site']['uniqid'] = '1234567890'; 
     
    5459    } 
    5560     
    56     public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False() { 
     61    public function testCheckUniqId_POSTとセッションのUniqIDが一致しない場合_False() 
     62    { 
    5763        $_POST['uniqid'] = '0987654321'; 
    5864        $_SESSION['site']['uniqid'] = '1234567890'; 
Note: See TracChangeset for help on using the changeset viewer.