Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 38:ac106d4c8961 default tip
flip /etc/roundcube to point here
author | Charlie Root |
---|---|
date | Sat, 29 Dec 2018 05:39:53 -0500 |
parents | 430dbd5346f7 |
children |
rev | line source |
---|---|
7 | 1 <?php |
2 | |
3 namespace Sabre\VObject\Property; | |
4 | |
5 use Sabre\VObject; | |
6 | |
7 class BinaryTest extends \PHPUnit_Framework_TestCase { | |
8 | |
9 /** | |
10 * @expectedException \InvalidArgumentException | |
11 */ | |
12 function testMimeDir() { | |
13 | |
14 $vcard = new VObject\Component\VCard(); | |
15 $vcard->add('PHOTO', array('a','b')); | |
16 | |
17 } | |
18 | |
19 } |