xref: /plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php (revision a1a3b6794e0e143a4a8b51d3185ce2d339be61ab)
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