Example #1
0
 public function test_getiterator()
 {
     $arc = new ArrayCollection(array('aap', 'noot'));
     $this->assertInstanceOf('\\ArrayIterator', $arc->getIterator());
 }
Example #2
0
 /** {@inheritDoc} */
 public function getIterator()
 {
     $this->initialize();
     return $this->collection->getIterator();
 }