annotate vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 45:e11491f625b0
add info action, one 7.3 -> 8.4 nit
| author |
Charlie Root |
| date |
Thu, 28 Aug 2025 10:40:29 -0400 |
| 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 }
|