Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

NodeTestCase.php

Zuletzt modifiziert: 09.10.2024, 12:58 - Dateigröße: 1.56 KiB


01  <?php
02   
03  /*
04   * This file is part of Twig.
05   *
06   * (c) Fabien Potencier
07   *
08   * For the full copyright and license information, please view the LICENSE
09   * file that was distributed with this source code.
10   */
11  abstract class Twig_Test_NodeTestCase extends PHPUnit_Framework_TestCase
12  {
13      abstract public function getTests();
14   
15      /**
16       * @dataProvider getTests
17       */
18      public function testCompile($node, $source, $environment = null)
19      {
20          $this->assertNodeCompilation($source, $node, $environment);
21      }
22   
23      public function assertNodeCompilation($source, Twig_Node $node, Twig_Environment $environment = null)
24      {
25          $compiler = $this->getCompiler($environment);
26          $compiler->compile($node);
27   
28          $this->assertEquals($source, trim($compiler->getSource()));
29      }
30   
31      protected function getCompiler(Twig_Environment $environment = null)
32      {
33          return new Twig_Compiler(null === $environment ? $this->getEnvironment() : $environment);
34      }
35   
36      protected function getEnvironment()
37      {
38          return new Twig_Environment();
39      }
40   
41      protected function getVariableGetter($name)
42      {
43          if (version_compare(phpversion(), '5.4.0RC1', '>=')) {
44              return sprintf('(isset($context["%s"]) ? $context["%s"] : null)', $name, $name);
45          }
46   
47          return sprintf('$this->getContext($context, "%s")', $name);
48      }
49   
50      protected function getAttributeGetter()
51      {
52          if (function_exists('twig_template_get_attributes')) {
53              return 'twig_template_get_attributes($this, ';
54          }
55   
56          return '$this->getAttribute(';
57      }
58  }
59