/**
  * Test the add/getter for the remove methods.
  *
  * @return void
  */
 public function testAddGetRemoveMethods()
 {
     $this->descriptor->addRemoveMethod('logout');
     $this->assertEquals(array('logout'), $this->descriptor->getRemoveMethods());
 }