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/Common_TestCase.php

    r22567 r22796  
    1414 * 
    1515 */ 
    16 class Common_TestCase extends PHPUnit_Framework_TestCase 
    17 { 
     16class Common_TestCase extends PHPUnit_Framework_TestCase { 
    1817 
    1918  /** SC_Query インスタンス */ 
     
    2524  protected $actual; 
    2625 
    27   protected function setUp() 
    28   { 
     26  protected function setUp() { 
    2927    $this->objQuery = SC_Query_Ex::getSingletonInstance(); 
    3028    $this->objQuery->begin(); 
    3129  } 
    3230 
    33   protected function tearDown() 
    34   { 
     31  protected function tearDown() { 
    3532    $this->objQuery->rollback(); 
    3633    $this->objQuery = null; 
     
    4138   * 呼び出す前に、$expectedに期待値を、$actualに実際の値を導入してください。 
    4239   */ 
    43   protected function verify($message = null) 
    44   { 
     40  protected function verify($message = null) { 
    4541    $this->assertEquals($this->expected, $this->actual, $message); 
    4642  } 
     
    5450   */ 
    5551  /** 
    56   public function testExit() 
    57   { 
     52  public function testExit() { 
    5853    $resp = new SC_Response_Ex(); 
    5954    $resp->actionExit(); 
     
    6964   */ 
    7065  /** 
    71   public function testDeviceType() 
    72   { 
     66  public function testDeviceType() { 
    7367    $this->expected = array(DEVICE_TYPE_MOBILE, DEVICE_TYPE_SMARTPHONE); 
    7468    $this->actual = array(); 
     
    8882   */ 
    8983  /** 
    90   public function testLoginState() 
    91   { 
     84  public function testLoginState() { 
    9285    $this->expected = array(FALSE, TRUE); 
    9386    $this->actual = array(); 
Note: See TracChangeset for help on using the changeset viewer.