view vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 22:61316094e61d

a bit better wrt Dates: displaying, but not popup for setting
author Charlie Root
date Tue, 16 Jan 2018 17:48:15 -0500
parents 430dbd5346f7
children
line wrap: on
line source

<?php

namespace Sabre\VObject\Property;

use Sabre\VObject;

class BinaryTest extends \PHPUnit_Framework_TestCase {

    /**
     * @expectedException \InvalidArgumentException
     */
    function testMimeDir() {

        $vcard = new VObject\Component\VCard();
        $vcard->add('PHOTO', array('a','b'));

    }

}