mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
Implemented test for RequestedActionService
This commit is contained in:
parent
b2d50e3cfd
commit
36340dcff3
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace tests\Unit\Domain\RequestManagement\Action;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use App\Domain\RequestManagement\Right\RequestedRightServiceInterface;
|
||||||
|
use App\Domain\RequestManagement\Action\RequestedActionService;
|
||||||
|
use App\Domain\RequestManagement\Action\RequestedActionServiceInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author kevinfrantz
|
||||||
|
*/
|
||||||
|
class RequestedActionServiceTest extends TestCase
|
||||||
|
{
|
||||||
|
public function testConstructorSet(): void
|
||||||
|
{
|
||||||
|
$requestedRightService = $this->createMock(RequestedRightServiceInterface::class);
|
||||||
|
$service = new RequestedActionService($requestedRightService);
|
||||||
|
$this->assertInstanceOf(RequestedActionServiceInterface::class, $service);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user