public function testGetValues()
 {
     $obj1 = new Base();
     $obj1->setId(10);
     $obj2 = new Base();
     $obj2->setId(20);
     $this->assertEquals(array($obj1, $obj2), $this->arrayCollection->getValues());
 }