コード例 #1
0
ファイル: EventTest.php プロジェクト: rb-cohen/ical-php
 /**
  * @expectedException \Ical\Exception\RuntimeException
  */
 public function testToIcalExceptionWhenNoStartDate()
 {
     $event = new Event('test-1');
     $event->end(new \DateTime('now'));
     $event->toIcal();
 }