ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
SupportedCollationSetTest.php
Go to the documentation of this file.
1<?php
2
4
6use Sabre\DAV;
7
9
10 function testSimple() {
11
12 $scs = new SupportedCollationSet();
13 $this->assertInstanceOf('Sabre\CalDAV\Xml\Property\SupportedCollationSet', $scs);
14
15 }
16
20 function testSerialize() {
21
22 $property = new SupportedCollationSet();
23
24 $this->namespaceMap[CalDAV\Plugin::NS_CALDAV] = 'cal';
25 $xml = $this->write(['{DAV:}root' => $property]);
26
27 $this->assertXmlStringEqualsXmlString(
28'<?xml version="1.0"?>
29<d:root xmlns:d="DAV:" xmlns:cal="' . CalDAV\Plugin::NS_CALDAV . '">
30<cal:supported-collation>i;ascii-casemap</cal:supported-collation>
31<cal:supported-collation>i;octet</cal:supported-collation>
32<cal:supported-collation>i;unicode-casemap</cal:supported-collation>
33</d:root>', $xml);
34
35 }
36
37}
An exception for terminatinating execution or to throw for unit testing.
const NS_CALDAV
This is the official CalDAV namespace.
Definition: Plugin.php:33