getSource() public method

public getSource ( $name )
Exemplo n.º 1
0
 public function testNonTwitalFile()
 {
     $twital = $this->getMock('Goetas\\Twital\\Twital');
     $twitalLoader = new TwitalLoader(new StringLoader(), $twital, false);
     $twitalLoader->addSourceAdapter('/.*\\.xml$/', new XMLAdapter());
     $twital->expects($this->never())->method('compile');
     $twitalLoader->getSource('aaa.txt');
 }