Renamed domain ActionManagement to Action

This commit is contained in:
Kevin Frantz
2019-05-30 16:03:44 +02:00
parent d2b0cba30b
commit 123df1147a
36 changed files with 112 additions and 112 deletions

View File

@@ -0,0 +1,34 @@
<?php
namespace tests\Integration\Domain\Action;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
use Infinito\Domain\Action\ActionDependenciesDAOServiceInterface;
use Doctrine\ORM\EntityManagerInterface;
/**
* @author kevinfrantz
*/
class ActionServiceIntegrationTest extends KernelTestCase
{
/**
* @var ActionDependenciesDAOServiceInterface
*/
private $actionService;
/**
* {@inheritdoc}
*
* @see \PHPUnit\Framework\TestCase::setUp()
*/
public function setUp(): void
{
self::bootKernel();
$this->actionService = self::$container->get(ActionDependenciesDAOServiceInterface::class);
}
public function testEntityManager(): void
{
$this->assertInstanceOf(EntityManagerInterface::class, $this->actionService->getEntityManager());
}
}