예제 #1
0
 function testCreateFile()
 {
     $file = fopen('php://memory', 'r+');
     fwrite($file, TestUtil::getTestCalendarData());
     rewind($file);
     $this->calendar->createFile('hello', $file);
     $file = $this->calendar->getChild('hello');
     $this->assertTrue($file instanceof CalendarObject);
 }