public function testClearingElementsInArrayCollection()
 {
     $collection = new ArrayCollection(array('first'));
     $collection->clear();
     $this->assertCount(0, $collection);
 }