Files
archived-ux-chartjs/tests/ChartjsBundleTest.php
2023-05-22 12:39:44 -04:00

31 lines
681 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\UX\Chartjs\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\UX\Chartjs\Tests\Kernel\TwigAppKernel;
/**
* @author Titouan Galopin <galopintitouan@gmail.com>
*
* @internal
*/
class ChartjsBundleTest extends TestCase
{
public function testBootKernel()
{
$kernel = new TwigAppKernel('test', true);
$kernel->boot();
$this->assertArrayHasKey('ChartjsBundle', $kernel->getBundles());
}
}