* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Symfony\Bundle\AsseticBundle\Tests\Factory\Resource; use Symfony\Bundle\AsseticBundle\Factory\Resource\FileResource; class FileResourceTest extends \PHPUnit_Framework_TestCase { private $loader; protected function setUp() { $this->loader = $this->getMockBuilder('Symfony\\Component\\Templating\\Loader\\LoaderInterface')->getMock(); } public function testCastAsString() { $baseDir = '/path/to/MyBundle/Resources/views/'; $resource = new FileResource($this->loader, 'MyBundle', $baseDir, $baseDir.'Section/template.html.twig'); $this->assertEquals('MyBundle:Section:template.html.twig', (string) $resource); } }