public function testRemoveAt()
 {
     $collection = new Collection(array(1, 3));
     $collection->removeAt(0);
     $this->assertEquals(array(3), $collection);
 }