Expanded rights to also manage actions instead of just a cruds

This commit is contained in:
Kevin Frantz
2019-02-21 18:46:57 +01:00
parent 465d6d6d01
commit 3e91aed050
27 changed files with 91 additions and 98 deletions

View File

@@ -30,7 +30,7 @@ class RequestedRightServiceIntegrationTest extends KernelTestCase
public function testClassAccessors(): void
{
$crud = CRUDType::READ;
$this->assertNull($this->requestedRightService->setCrud($crud));
$this->assertEquals($crud, $this->requestedRightService->getCrud());
$this->assertNull($this->requestedRightService->setActionType($crud));
$this->assertEquals($crud, $this->requestedRightService->getActionType());
}
}

View File

@@ -30,7 +30,7 @@ class RequestedUserServiceIntegrationTest extends KernelTestCase
public function testCrudAccessors(): void
{
$crud = CRUDType::READ;
$this->assertNull($this->requestedUserService->setCrud($crud));
$this->assertEquals($crud, $this->requestedUserService->getCrud());
$this->assertNull($this->requestedUserService->setActionType($crud));
$this->assertEquals($crud, $this->requestedUserService->getActionType());
}
}