Exemple #1
0
 /**
  * Template method. Main algorithm
  *
  * {@inheritdoc}
  */
 public function build(array $options)
 {
     $this->checkOptions($options);
     $this->options = $options;
     $config = $this->buildData($this->dependenciesParser->parse($options['parse']));
     $this->reportWriter->write($options['write'], $config);
 }
Exemple #2
0
 public function testBuild()
 {
     $options = ['parse' => ['files_for_parse' => [1, 2, 3]], 'write' => ['report_filename' => 'some_filename']];
     $parseResult = ['foo', 'bar', 'baz'];
     $configMock = $this->getMock('\\Magento\\Tools\\Dependency\\Report\\Data\\ConfigInterface');
     $this->dependenciesParserMock->expects($this->once())->method('parse')->with($options['parse'])->will($this->returnValue($parseResult));
     $this->builder->expects($this->once())->method('buildData')->with($parseResult)->will($this->returnValue($configMock));
     $this->reportWriterMock->expects($this->once())->method('write')->with($options['write'], $configMock);
     $this->builder->build($options);
 }