annotate vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 19:49706603be30
begin to add UI support for parameterised labels, e.g. Dates
| author |
Charlie Root |
| date |
Mon, 15 Jan 2018 10:29:29 -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 }
|