Security update for Core, with self-updated composer
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / ContainerRuntimeLoaderTest.php
1 <?php
2
3 /*
4  * This file is part of Twig.
5  *
6  * (c) Fabien Potencier
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 class Twig_Tests_ContainerRuntimeLoaderTest extends \PHPUnit\Framework\TestCase
13 {
14     /**
15      * @requires PHP 5.3
16      */
17     public function testLoad()
18     {
19         $container = $this->getMockBuilder('Psr\Container\ContainerInterface')->getMock();
20         $container->expects($this->once())->method('has')->with('stdClass')->willReturn(true);
21         $container->expects($this->once())->method('get')->with('stdClass')->willReturn(new stdClass());
22
23         $loader = new Twig_ContainerRuntimeLoader($container);
24
25         $this->assertInstanceOf('stdClass', $loader->load('stdClass'));
26     }
27
28     /**
29      * @requires PHP 5.3
30      */
31     public function testLoadUnknownRuntimeReturnsNull()
32     {
33         $container = $this->getMockBuilder('Psr\Container\ContainerInterface')->getMock();
34         $container->expects($this->once())->method('has')->with('Foo');
35         $container->expects($this->never())->method('get');
36
37         $loader = new Twig_ContainerRuntimeLoader($container);
38         $this->assertNull($loader->load('Foo'));
39     }
40 }