Exemplo n.º 1
0
 /**
  * @group ZF-8468
  */
 public function testGetRegisteredRolesIsDeprecated()
 {
     try {
         $this->_acl->getRegisteredRoles();
         $this->fail('getRegisteredRoles() did not throw an exception');
     } catch (PHPUnit_Framework_Error $e) {
         return;
     }
     $this->fail('An expected notice has not been raised');
 }