ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
SlashRTest.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\VObject;
4 
6 
11 class 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 }
This issue was pointed out in Issue 55.
Definition: SlashRTest.php:11