for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);
namespace eZ\Publish\Core\MVC\Symfony\Templating\Tests\Twig\Extension;
use eZ\Publish\Core\MVC\Symfony\Templating\Twig\Extension\DataAttributesExtension;
use Twig\Test\IntegrationTestCase;
class DataAttributesExtensionTest extends IntegrationTestCase
{
public function getExtensions(): array
return [
new DataAttributesExtension(),
];
}
protected function getFixturesDir(): string
return __DIR__ . '/_fixtures/filters';