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_Date/SC_Date_AccessorTest.php

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Date_AccessorTest extends Common_TestCase 
    28 { 
     27class SC_Date_AccessorTest extends Common_TestCase { 
    2928 
    30     protected function setUp() 
    31     { 
     29    protected function setUp() { 
    3230        parent::setUp(); 
    3331        $this->objDate = new SC_Date_Ex('2010','2014'); 
    3432    } 
    3533 
    36     protected function tearDown() 
    37     { 
     34    protected function tearDown() { 
    3835        parent::tearDown(); 
    3936    } 
     
    4138    ///////////////////////////////////////// 
    4239 
    43     public function testGetStartYear_startYearの値を取得する() 
    44     { 
     40    public function testGetStartYear_startYearの値を取得する() { 
    4541        $this->expected = '2010'; 
    4642        $this->actual = $this->objDate->getStartYear(); 
     
    4945    } 
    5046 
    51     public function testGetEndYear_endYearの値を取得する() 
    52     { 
     47    public function testGetEndYear_endYearの値を取得する() { 
    5348        $this->expected = '2014'; 
    5449        $this->actual = $this->objDate->getEndYear(); 
     
    5752    } 
    5853 
    59     public function testsetMonth_monthの値を設定する() 
    60     { 
     54    public function testsetMonth_monthの値を設定する() { 
    6155        $this->expected = '9'; 
    6256        $this->objDate->setMonth('9'); 
     
    6660    } 
    6761     
    68     public function testsetDay_dayの値を設定する() 
    69     { 
     62    public function testsetDay_dayの値を設定する() { 
    7063        $this->expected = '28'; 
    7164        $this->objDate->setDay('28'); 
Note: See TracChangeset for help on using the changeset viewer.