public function testOptionsCanBeSetSingle()
 {
     $proxy = $this->getMock('DoctrineModule\\Form\\Element\\Proxy');
     $proxy->expects($this->once())->method('setOptions')->with(array('is_method' => true));
     $this->setProxyViaReflection($proxy);
     $this->element->setOption('is_method', true);
 }