예제 #1
0
파일: TimeLibTest.php 프로젝트: Jony01/LLD
 /**
  * TimeLibTest::testCweekMod()
  *
  * @return void
  */
 public function testCweekMod()
 {
     $result = TimeLib::cWeekMod(0);
     $this->assertEquals(0, $result);
     $result = TimeLib::cWeekMod(1);
     $this->assertEquals(1, $result);
     $result = TimeLib::cWeekMod(6);
     $this->assertEquals(0, $result);
 }