◆ testGetChild()
Sabre\CalDAV\CalendarHomeNotificationsTest::testGetChild |
( |
| ) |
|
Definition at line 40 of file CalendarHomeNotificationsTest.php.
References $result.
42 $backend =
new Backend\MockSharing();
43 $calendarHome =
new CalendarHome($backend, [
'uri' =>
'principals/user']);
44 $result = $calendarHome->getChild(
'notifications');
45 $this->assertEquals(
'notifications',
$result->getName());
◆ testGetChildNoSupport()
Sabre\CalDAV\CalendarHomeNotificationsTest::testGetChildNoSupport |
( |
| ) |
|
Definition at line 22 of file CalendarHomeNotificationsTest.php.
24 $backend =
new Backend\Mock();
25 $calendarHome =
new CalendarHome($backend, [
'uri' =>
'principals/user']);
26 $calendarHome->getChild(
'notifications');
◆ testGetChildren()
Sabre\CalDAV\CalendarHomeNotificationsTest::testGetChildren |
( |
| ) |
|
Definition at line 30 of file CalendarHomeNotificationsTest.php.
References $result.
32 $backend =
new Backend\MockSharing();
33 $calendarHome =
new CalendarHome($backend, [
'uri' =>
'principals/user']);
35 $result = $calendarHome->getChildren();
36 $this->assertEquals(
'notifications',
$result[0]->getName());
◆ testGetChildrenNoSupport()
Sabre\CalDAV\CalendarHomeNotificationsTest::testGetChildrenNoSupport |
( |
| ) |
|
Definition at line 7 of file CalendarHomeNotificationsTest.php.
9 $backend =
new Backend\Mock();
10 $calendarHome =
new CalendarHome($backend, [
'uri' =>
'principals/user']);
14 $calendarHome->getChildren()
The documentation for this class was generated from the following file: