Gc\View\Resolver\TemplatePathStackTest::testResolveWithFakePharProtocol PHP Method

testResolveWithFakePharProtocol() public method

Test
    public function testResolveWithFakePharProtocol()
    {
        $path = 'phar://' . __DIR__ . DIRECTORY_SEPARATOR . '_templates' . DIRECTORY_SEPARATOR . 'fake-view.phar';
        $this->object->addPath($path);
        $markup = $this->object->resolve('hello.phtml');
        $this->assertFalse($markup);
    }