예제 #1
0
파일: TimeLibTest.php 프로젝트: Jony01/LLD
 /**
  * TimeLibTest::testIsLeapYear()
  *
  * @return void
  */
 public function testIsLeapYear()
 {
     $is = TimeLib::isLeapYear('2000');
     $this->assertTrue($is);
     $is = TimeLib::isLeapYear('2001');
     $this->assertFalse($is);
 }