mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized CrudAttribut logic
This commit is contained in:
@@ -73,9 +73,9 @@ class RightTest extends TestCase
|
||||
|
||||
public function testRight(): void
|
||||
{
|
||||
foreach (CRUDType::getChoices() as $key => $value) {
|
||||
$this->assertNull($this->right->setCrud($key));
|
||||
$this->assertEquals($key, $this->right->getCrud());
|
||||
foreach (CRUDType::getChoices() as $enum) {
|
||||
$this->assertNull($this->right->setCrud($enum));
|
||||
$this->assertEquals($enum, $this->right->getCrud());
|
||||
}
|
||||
$this->expectException(NoValidChoiceException::class);
|
||||
$this->right->setCrud('NoneValidType');
|
||||
|
Reference in New Issue
Block a user