public function testRemoveElement()
 {
     $this->collection[] = 'one';
     $this->collection[] = 'two';
     $this->assertTrue($this->collection->removeElement('two'));
     $this->assertFalse($this->collection->contains('two'));
     $this->assertFalse($this->collection->removeElement('two'));
 }