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