ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
DurationTest.php
Go to the documentation of this file.
1<?php
2
4
5use PHPUnit\Framework\TestCase;
8
9class DurationTest extends TestCase {
10
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}
An exception for terminatinating execution or to throw for unit testing.
The VCalendar component.
Definition: VCalendar.php:23
VEvent component.
Definition: VEvent.php:19