BinaryTest.php 320 B

12345678910111213141516171819
  1. <?php
  2. namespace Sabre\VObject\Property;
  3. use Sabre\VObject;
  4. class BinaryTest extends \PHPUnit_Framework_TestCase {
  5. /**
  6. * @expectedException \InvalidArgumentException
  7. */
  8. function testMimeDir() {
  9. $vcard = new VObject\Component\VCard();
  10. $vcard->add('PHOTO', array('a','b'));
  11. }
  12. }