public function testCurrentKeyElementInCollectionIterator()
 {
     $collection = new ArrayCollection(array(0, 1, 2, 3, 4, 5));
     $iterator = new CollectionIterator($collection);
     $this->assertEquals(0, $iterator->key());
 }