| Current Path : /home/rtorresani/www/dev/tests/integration/testsuite/Magento/Framework/App/Config/ |
| Current File : //home/rtorresani/www/dev/tests/integration/testsuite/Magento/Framework/App/Config/InitialTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Config;
use Magento\TestFramework\Helper\CacheCleaner;
use Magento\TestFramework\ObjectManager;
use Magento\TestFramework\Helper\Bootstrap;
use Magento\Framework\App\Config\Initial as Config;
class InitialTest extends \PHPUnit\Framework\TestCase
{
/**
* @var ObjectManager
*/
private $objectManager;
protected function setUp(): void
{
$this->objectManager = Bootstrap::getObjectManager();
}
public function testGetMetadata()
{
$this->assertEquals(
$this->objectManager->create(Config::class)->getMetadata(),
$this->objectManager->create(Config::class)->getMetadata()
);
}
/**
* @param string $scope
* @dataProvider getDataDataProvider
*/
public function testGetData($scope)
{
$this->assertEquals(
$this->objectManager->create(Config::class)->getData($scope),
$this->objectManager->create(Config::class)->getData($scope)
);
}
public function getDataDataProvider()
{
return [
['default'],
['stores|default'],
['websites|default']
];
}
}