Ignore:
Timestamp:
2013/02/18 19:09:54 (14 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/Common_TestCase.php

    r22139 r22567  
    1414 * 
    1515 */ 
    16 class Common_TestCase extends PHPUnit_Framework_TestCase { 
     16class Common_TestCase extends PHPUnit_Framework_TestCase 
     17{ 
    1718 
    1819  /** SC_Query インスタンス */ 
     
    2425  protected $actual; 
    2526 
    26   protected function setUp() { 
     27  protected function setUp() 
     28  { 
    2729    $this->objQuery = SC_Query_Ex::getSingletonInstance(); 
    2830    $this->objQuery->begin(); 
    2931  } 
    3032 
    31   protected function tearDown() { 
     33  protected function tearDown() 
     34  { 
    3235    $this->objQuery->rollback(); 
    3336    $this->objQuery = null; 
     
    3841   * 呼び出す前に、$expectedに期待値を、$actualに実際の値を導入してください。 
    3942   */ 
    40   protected function verify($message = null) { 
     43  protected function verify($message = null) 
     44  { 
    4145    $this->assertEquals($this->expected, $this->actual, $message); 
    4246  } 
     
    5054   */ 
    5155  /** 
    52   public function testExit() { 
     56  public function testExit() 
     57  { 
    5358    $resp = new SC_Response_Ex(); 
    5459    $resp->actionExit(); 
     
    6469   */ 
    6570  /** 
    66   public function testDeviceType() { 
     71  public function testDeviceType() 
     72  { 
    6773    $this->expected = array(DEVICE_TYPE_MOBILE, DEVICE_TYPE_SMARTPHONE); 
    6874    $this->actual = array(); 
     
    8288   */ 
    8389  /** 
    84   public function testLoginState() { 
     90  public function testLoginState() 
     91  { 
    8592    $this->expected = array(FALSE, TRUE); 
    8693    $this->actual = array(); 
Note: See TracChangeset for help on using the changeset viewer.