コード例 #1
0
ファイル: DayTest.php プロジェクト: jarnstedt/timetable
 /**
  * Test changing day
  */
 public function testSetDay()
 {
     $day = new Day(Day::MONDAY);
     $day->setDay(Day::SUNDAY);
     $dayFormatted = $day->format('l');
     $this->assertEquals('Sunday', $dayFormatted);
 }