Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 7:430dbd5346f7
vendor sabre as distributed
author | Charlie Root |
---|---|
date | Sat, 13 Jan 2018 09:06:10 -0500 |
parents | |
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 } |