You are here

public function Twig_Tests_Loader_ArrayTest::testSetTemplate in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php \Twig_Tests_Loader_ArrayTest::testSetTemplate()

File

vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php, line 48

Class

Twig_Tests_Loader_ArrayTest

Code

public function testSetTemplate() {
  $loader = new Twig_Loader_Array(array());
  $loader
    ->setTemplate('foo', 'bar');
  $this
    ->assertEquals('bar', $loader
    ->getSource('foo'));
}