getContent() public method

public getContent ( )
Esempio n. 1
0
 public function testInvalidTemplateNameGetContent()
 {
     $loader = $this->getMock('Twig_LoaderInterface');
     $loader->expects($this->once())->method('getSource')->with('asdf')->will($this->throwException(new \Twig_Error_Loader('')));
     $resource = new TwigResource($loader, 'asdf');
     $this->assertEquals('', $resource->getContent());
 }