예제 #1
0
파일: ConstructTest.php 프로젝트: hmlb/date
 public function testMonths()
 {
     $ci = new Interval(0, 1);
     $this->assertInstanceOfInterval($ci);
     $this->assertInterval($ci, 0, 1, 0, 0, 0, 0);
     $ci = Interval::months(2);
     $this->assertInstanceOfInterval($ci);
     $this->assertInterval($ci, 0, 2, 0, 0, 0, 0);
     $ci = Interval::month();
     $this->assertInstanceOfInterval($ci);
     $this->assertInterval($ci, 0, 1, 0, 0, 0, 0);
     $ci = Interval::month(3);
     $this->assertInstanceOfInterval($ci);
     $this->assertInterval($ci, 0, 3, 0, 0, 0, 0);
 }