mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace tests\Integration\Domain\RequestManagement\Action;
 | 
						|
 | 
						|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
 | 
						|
use Infinito\Domain\RequestManagement\Action\RequestedActionServiceInterface;
 | 
						|
use Infinito\DBAL\Types\ActionType;
 | 
						|
use Infinito\Domain\RequestManagement\Entity\LazyRequestedEntity;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author kevinfrantz
 | 
						|
 */
 | 
						|
class RequestedActionServiceIntegrationTest extends KernelTestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var RequestedActionServiceInterface
 | 
						|
     */
 | 
						|
    private $requestedActionService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     *
 | 
						|
     * @see \PHPUnit\Framework\TestCase::setUp()
 | 
						|
     */
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
        self::bootKernel();
 | 
						|
        $this->requestedActionService = self::$container->get(RequestedActionServiceInterface::class);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testActionAccessors(): void
 | 
						|
    {
 | 
						|
        $actionType = ActionType::EXECUTE;
 | 
						|
        $this->assertNull($this->requestedActionService->setActionType($actionType));
 | 
						|
        $this->assertEquals($actionType, $this->requestedActionService->getActionType());
 | 
						|
    }
 | 
						|
 | 
						|
    public function testLazyRequestedEntity(): void
 | 
						|
    {
 | 
						|
        $this->assertInstanceOf(LazyRequestedEntity::class, $this->requestedActionService->getRequestedEntity());
 | 
						|
    }
 | 
						|
}
 |