public function Twig_Tests_Loader_ArrayTest::testSetTemplate in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Code
public function testSetTemplate() {
$loader = new Twig_Loader_Array(array());
$loader
->setTemplate('foo', 'bar');
$this
->assertEquals('bar', $loader
->getSource('foo'));
}