Eu estou tentando ler uma linha no meu teste de unidade de core_config_table no banco de dados magento 2. Eu sei que para realizar este trabalho, eu li este link . Eu tenho que usar:
\Magento\Framework\App\Config\ScopeConfigInterface
através:
\Magento\Framework\TestFramework\Unit\Helper\ObjectManager
Aqui está o meu código:
protected function setUp()
{
$objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
$this->scopeConfig = $objectManager->getObject('\Magento\Framework\App\Config\ScopeConfigInterface');
}
public function testgetImageCDNConfigValue()
{
$this->scopeConfig->getValue($this->path, \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
if ($this->scopeConfig == null) {
$this->assertFalse(true);
} else {
$this->assertTrue(true);
}
}
Posso obter todos os objetos que eu quiser usando testObject, \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
mas sempre que eu quiser\Magento\Framework\App\Config\ScopeConfigInterface
Erro fatal: Não é possível instanciar a interface Magento \ Framework \ App \ Config \ ScopeConf igInterface em C: \ xampp \ htdocs \ magento \ vendor \ magento \ framework \ TestFramework \ Un it \ Helper \ ObjectManager.php na linha 162