assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal); $it = new RecurrenceIterator($vcal, 'foo'); $result = iterator_to_array($it); $tz = new DateTimeZone('Europe/Moscow'); $this->assertEquals(array( new DateTime('2013-07-10 11:00:00', $tz), new DateTime('2013-07-12 11:00:00', $tz), new DateTime('2013-07-13 11:00:00', $tz), ), $result); } }