Ejemplo n.º 1
0
 public function testBuild()
 {
     $options = array('parse' => array('files_for_parse' => array(1, 2, 3)), 'write' => array('report_filename' => 'some_filename'));
     $parseResult = array('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);
 }