mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
37 lines
935 B
PHP
37 lines
935 B
PHP
<?php
|
|
|
|
namespace tests\Integration\Domain\Request\Right;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
use Infinito\DBAL\Types\Meta\Right\CRUDType;
|
|
use Infinito\Domain\Request\User\RequestedUserServiceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
class RequestedUserServiceIntegrationTest extends KernelTestCase
|
|
{
|
|
/**
|
|
* @var RequestedUserServiceInterface
|
|
*/
|
|
private $requestedUserService;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \PHPUnit\Framework\TestCase::setUp()
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
self::bootKernel();
|
|
$this->requestedUserService = self::$container->get(RequestedUserServiceInterface::class);
|
|
}
|
|
|
|
public function testCrudAccessors(): void
|
|
{
|
|
$crud = CRUDType::READ;
|
|
$this->assertNull($this->requestedUserService->setActionType($crud));
|
|
$this->assertEquals($crud, $this->requestedUserService->getActionType());
|
|
}
|
|
}
|