ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
DurationTest.php
Go to the documentation of this file.
1 <?php
2 
4 
8 
9 class DurationTest extends TestCase {
10 
11  function testGetDateInterval() {
12 
13  $vcal = new VCalendar();
14  $event = $vcal->add('VEVENT', ['DURATION' => ['PT1H']]);
15 
16  $this->assertEquals(
17  new \DateInterval('PT1H'),
18  $event->{'DURATION'}->getDateInterval()
19  );
20  }
21 }
The VCalendar component.
Definition: VCalendar.php:23