xref: /plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php (revision 185e2535914616e98630b0777145a3e6d5c8d81b)
1<?php
2
3namespace Sabre\VObject\Property;
4
5use Sabre\VObject;
6
7class 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}
20