Example #1
0
 function testCreateFileNoSupportedComponents()
 {
     $file = fopen('php://memory', 'r+');
     fwrite($file, TestUtil::getTestCalendarData());
     rewind($file);
     $calendar = new Calendar($this->backend, $this->calendars[1]);
     $calendar->createFile('hello', $file);
     $file = $calendar->getChild('hello');
     $this->assertTrue($file instanceof CalendarObject);
 }