Mercurial > hg > rc1
annotate vendor/sabre/vobject/tests/VObject/Property/BinaryTest.php @ 11:d57f154e7764
change plugins inventory
| author | Charlie Root |
|---|---|
| date | Sat, 13 Jan 2018 09:38:33 -0500 |
| 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 } |
