| Current Path : /home/rtorresani/www/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Config/ |
| Current File : //home/rtorresani/www/setup/src/Magento/Setup/Test/Unit/Module/Dependency/Parser/Config/XmlTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Setup\Test\Unit\Module\Dependency\Parser\Config;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Setup\Module\Dependency\Parser\Config\Xml;
use PHPUnit\Framework\TestCase;
class XmlTest extends TestCase
{
/**
* @var Xml
*/
protected $parser;
protected function setUp(): void
{
$objectManagerHelper = new ObjectManager($this);
$this->parser = $objectManagerHelper->getObject(Xml::class);
}
/**
* @param array $options
* @dataProvider dataProviderWrongOptionFilesForParse
*/
public function testParseWithWrongOptionFilesForParse($options)
{
$this->expectException('InvalidArgumentException');
$this->expectExceptionMessage('Parse error: Option "files_for_parse" is wrong.');
$this->parser->parse($options);
}
/**
* @return array
*/
public function dataProviderWrongOptionFilesForParse()
{
return [
[['files_for_parse' => []]],
[['files_for_parse' => 'sting']],
[['there_are_no_files_for_parse' => [1, 3]]]
];
}
}