mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\ReportBundle\Tests\DependencyInjection;
|
|
|
|
use Exception;
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
|
|
/**
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
final class ChillReportExtensionTest extends KernelTestCase
|
|
{
|
|
/*
|
|
* Check if class Chill\ReportBundle\Entity\Report is in chill_custom_fields.customizables_entities
|
|
*/
|
|
public function testDeclareReportAsCustomizable()
|
|
{
|
|
self::bootKernel(['environment' => 'test']);
|
|
$customizablesEntities = self::$kernel->getContainer()
|
|
->getParameter('chill_custom_fields.customizables_entities');
|
|
|
|
$reportFounded = false;
|
|
|
|
foreach ($customizablesEntities as $customizablesEntity) {
|
|
if ('Chill\ReportBundle\Entity\Report' === $customizablesEntity['class']) {
|
|
$reportFounded = true;
|
|
}
|
|
}
|
|
|
|
if (!$reportFounded) {
|
|
throw new Exception('Class Chill\\ReportBundle\\Entity\\Report not found in chill_custom_fields.customizables_entities', 1);
|
|
}
|
|
}
|
|
}
|