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

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Date_getDayTest extends Common_TestCase 
    28 { 
     27class SC_Date_getDayTest extends Common_TestCase { 
    2928 
    30     protected function setUp() 
    31     { 
     29    protected function setUp() { 
    3230        parent::setUp(); 
    3331        $this->objDate = new SC_Date_Ex(); 
    3432    } 
    3533 
    36     protected function tearDown() 
    37     { 
     34    protected function tearDown() { 
    3835        parent::tearDown(); 
    3936    } 
     
    4138    ///////////////////////////////////////// 
    4239 
    43     public function testGetDay_要素の数が31の配列を返す() 
    44     { 
     40    public function testGetDay_要素の数が31の配列を返す() { 
    4541        $this->expected = 31; 
    4642        $this->actual = count($this->objDate->getDay()); 
     
    4945    } 
    5046 
    51     public function testGetDay_要素の最低値が1の配列を返す() 
    52     { 
     47    public function testGetDay_要素の最低値が1の配列を返す() { 
    5348        $this->expected = 1; 
    5449        $this->actual = min($this->objDate->getDay()); 
     
    5752    } 
    5853 
    59     public function testGetDay_要素の最大値が31の配列を返す() 
    60     { 
     54    public function testGetDay_要素の最大値が31の配列を返す() { 
    6155        $this->expected = 31; 
    6256        $this->actual = max($this->objDate->getDay()); 
     
    6559    } 
    6660 
    67     public function testGetDay_TRUEを与えた場合要素の数が32の配列を返す() 
    68     { 
     61    public function testGetDay_TRUEを与えた場合要素の数が32の配列を返す() { 
    6962        $this->expected = 32; 
    7063        $this->actual = count($this->objDate->getDay(true)); 
     
    7366    } 
    7467 
    75     public function testGetDay_TRUEを与えた場合ーー含まれるの配列を返す() 
    76     { 
     68    public function testGetDay_TRUEを与えた場合ーー含まれるの配列を返す() { 
    7769        $result = in_array('--', $this->objDate->getDay(true)); 
    7870 
Note: See TracChangeset for help on using the changeset viewer.