Example #1
0
 protected function setUp()
 {
     $this->fileLocator = $this->prophesize(FileLocator::class);
     $this->fileLocator->locate('@Resource/routes.yml')->willReturn(__DIR__ . '/../Resources/Yaml/routes.yml');
     $this->yamlParser = $yamlParser = $this->prophesize(Parser::CLASS);
     $this->loader = new YamlFileLoader($this->fileLocator->reveal());
 }