You are here

public function ParserTest::testParsingNonExistentFilesThrowsException in Lockr 7.3

@expectedException \Symfony\Component\Yaml\Exception\ParseException @expectedExceptionMessageRegExp #^File ".+/Fixtures/nonexistent.yml" does not exist\.$#

File

vendor/symfony/yaml/Tests/ParserTest.php, line 2087

Class

ParserTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParsingNonExistentFilesThrowsException() {
  $this->parser
    ->parseFile(__DIR__ . '/Fixtures/nonexistent.yml');
}