Files
Twig/extra/cache-extra/Tests/IntegrationTest.php
T
Fabien Potencier fcbaa669ab Fix CS
2021-05-12 09:47:40 +02:00

48 lines
1.1 KiB
PHP

<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Extra\Cache\Tests;
use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Twig\Extra\Cache\CacheExtension;
use Twig\Extra\Cache\CacheRuntime;
use Twig\RuntimeLoader\RuntimeLoaderInterface;
use Twig\Test\IntegrationTestCase;
class IntegrationTest extends IntegrationTestCase
{
public function getExtensions()
{
return [
new CacheExtension(),
];
}
protected function getRuntimeLoaders()
{
return [
new class() implements RuntimeLoaderInterface {
public function load($class)
{
if (CacheRuntime::class === $class) {
return new CacheRuntime(new ArrayAdapter());
}
}
},
];
}
public function getFixturesDir()
{
return __DIR__.'/Fixtures/';
}
}