PhroznTest\Site\View\FactoryTest::testSourceFileCanNotBeRead PHP Method

testSourceFileCanNotBeRead() public method

    public function testSourceFileCanNotBeRead()
    {
        $path = dirname(__FILE__) . '/../project/.phrozn/entries/';
        $input = $path . 'not-found.twig';
        $this->setExpectedException('RuntimeException', "View source file cannot be read: {$input}");
        $factory = new Factory();
        $view = $factory->setInputFile($input)->create();
    }