public function testCanRemoveParams()
 {
     $c = new Operation(array());
     $c->addParam(new Parameter(array('name' => 'foo')));
     $this->assertTrue($c->hasParam('foo'));
     $c->removeParam('foo');
     $this->assertFalse($c->hasParam('foo'));
 }