TwigLoaderTest.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php
  2. 10 core/modules/system/tests/src/Kernel/Theme/TwigLoaderTest.php
  3. 11.x core/modules/system/tests/src/Kernel/Theme/TwigLoaderTest.php

Namespace

Drupal\Tests\system\Functional\Theme

File

core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php

View source
<?php

namespace Drupal\Tests\system\Functional\Theme;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests adding Twig loaders.
 *
 * @group Theme
 */
class TwigLoaderTest extends BrowserTestBase {
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'twig_loader_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests adding an additional twig loader to the loader chain.
   */
  public function testTwigLoaderAddition() {
    $environment = \Drupal::service('twig');
    $template = $environment->loadTemplate('kittens');
    $this->assertEqual($template->render([]), 'kittens', 'Passing "kittens" to the custom Twig loader returns "kittens".');
    $template = $environment->loadTemplate('meow');
    $this->assertEqual($template->render([]), 'cats', 'Passing something other than "kittens" to the custom Twig loader returns "cats".');
  }

}

Classes

Title Deprecated Summary
TwigLoaderTest Tests adding Twig loaders.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.