Example #1
0
 public function testSetGetAllDay()
 {
     $this->assertFalse($this->event->getAllDay());
     $this->assertFalse($this->event->isAllDay());
     $this->event->setAllDay(true);
     $this->assertTrue($this->event->getAllDay());
     $this->assertTrue($this->event->isAllDay());
 }