Beispiel #1
0
 /**
  * TimeLibTest::testIsLeapYear()
  *
  * @return void
  */
 public function testIsLeapYear()
 {
     $is = TimeLib::isLeapYear('2000');
     $this->assertTrue($is);
     $is = TimeLib::isLeapYear('2001');
     $this->assertFalse($is);
 }