You are here

protected function TwigSandboxTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php \Drupal\Tests\Core\Template\TwigSandboxTest::setUp()
  2. 9 core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php \Drupal\Tests\Core\Template\TwigSandboxTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php, line 37
Contains \Drupal\Tests\Core\Template\TwigSandboxTest.

Class

TwigSandboxTest
Tests the twig sandbox policy.

Namespace

Drupal\Tests\Core\Template

Code

protected function setUp() : void {
  parent::setUp();
  $loader = new StringLoader();
  $this->twig = new Environment($loader);
  $policy = new TwigSandboxPolicy();
  $sandbox = new SandboxExtension($policy, TRUE);
  $this->twig
    ->addExtension($sandbox);
}