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

    r22567 r22796  
    2525require_once($HOME . "/tests/class/Common_TestCase.php"); 
    2626 
    27 class SC_Date_getMinutesTest extends Common_TestCase 
    28 { 
     27class SC_Date_getMinutesTest 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 testGetMinutes_要素の数が60の配列を返す() 
    44     { 
     40    public function testGetMinutes_要素の数が60の配列を返す() { 
    4541        $this->expected = 60; 
    4642        $this->actual = count($this->objDate->getMinutes()); 
     
    4945    } 
    5046 
    51     public function testGetMinutes_要素の最低値が0の配列を返す() 
    52     { 
     47    public function testGetMinutes_要素の最低値が0の配列を返す() { 
    5348        $this->expected = 0; 
    5449        $this->actual = min($this->objDate->getMinutes()); 
     
    5752    } 
    5853 
    59     public function testGetMinutes_要素の最大値が59の配列を返す() 
    60     { 
     54    public function testGetMinutes_要素の最大値が59の配列を返す() { 
    6155        $this->expected = 59; 
    6256        $this->actual = max($this->objDate->getMinutes()); 
Note: See TracChangeset for help on using the changeset viewer.