Example #1
0
 /** @dataProvider rolesProvider */
 public function testCheckThrowsExceptionOnMissingRoles($roles, $isExeptionExpected)
 {
     if ($isExeptionExpected) {
         $this->setExpectedException('Claroline\\CoreBundle\\Library\\Workspace\\Exception\\BaseRoleException');
     }
     $config = new Configuration(null, false);
     $config->checkRoles($roles);
 }