
| Current Path : /var/www/html/rocksensor1/web/core/modules/system/tests/src/Kernel/Theme/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/system/tests/src/Kernel/Theme/TwigLoaderTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\system\Kernel\Theme;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests adding Twig loaders.
*
* @group Theme
*/
class TwigLoaderTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['twig_loader_test'];
/**
* Tests adding an additional twig loader to the loader chain.
*/
public function testTwigLoaderAddition(): void {
$environment = \Drupal::service('twig');
$template = $environment->load('kittens');
$this->assertEquals('kittens', $template->render([]), 'Passing "kittens" to the custom Twig loader returns "kittens".');
$template = $environment->load('meow');
$this->assertEquals('cats', $template->render([]), 'Passing something other than "kittens" to the custom Twig loader returns "cats".');
}
}