You are here

public function XmlFileLoaderTest::getPathsToInvalidFiles in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Tests/Loader/XmlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\XmlFileLoaderTest::getPathsToInvalidFiles()

File

vendor/symfony/routing/Tests/Loader/XmlFileLoaderTest.php, line 124

Class

XmlFileLoaderTest

Namespace

Symfony\Component\Routing\Tests\Loader

Code

public function getPathsToInvalidFiles() {
  return array(
    array(
      'nonvalidnode.xml',
    ),
    array(
      'nonvalidroute.xml',
    ),
    array(
      'nonvalid.xml',
    ),
    array(
      'missing_id.xml',
    ),
    array(
      'missing_path.xml',
    ),
  );
}