public function testGetValueOptionsDoesntInvokeProxyIfOptionsNotEmpty()
 {
     $options = array('foo' => 'bar');
     $proxy = $this->getMock('DoctrineModule\\Form\\Element\\Proxy');
     $proxy->expects($this->once())->method('getValueOptions')->will($this->returnValue($options));
     $this->setProxyViaReflection($proxy);
     $this->assertEquals($options, $this->element->getValueOptions());
     $this->assertEquals($options, $this->element->getValueOptions());
 }