ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
SlashRTest.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\VObject;
4
5use PHPUnit\Framework\TestCase;
6
11class SlashRTest extends TestCase {
12
13 function testEncode() {
14
15 $vcal = new Component\VCalendar();
16 $prop = $vcal->add('test', "abc\r\ndef");
17 $this->assertEquals("TEST:abc\\ndef\r\n", $prop->serialize());
18
19 }
20
21
22}
An exception for terminatinating execution or to throw for unit testing.
This issue was pointed out in Issue 55.
Definition: SlashRTest.php:11