Author: Victor Farazdagi
Inheritance: extends Base
Example #1
0
 public function testProviderInvalidInputFile()
 {
     $this->setExpectedException('RuntimeException', 'Input file "/some-unreadable-file" not found');
     $provider = new Provider();
     $provider->setConfig(array('input' => 'some-unreadable-file'))->get();
 }