public function testIndexOfInArrayCollection()
 {
     $collection = new ArrayCollection(array('first', 'last'));
     $this->assertEquals(0, $collection->indexOf('first'));
 }