J'essaie de lire une ligne de mon test unitaire à partir de core_config_table dans la base de données magento 2. Je sais que pour accomplir ce travail, j'ai lu ce lien . Je dois utiliser:
\Magento\Framework\App\Config\ScopeConfigInterface
par:
\Magento\Framework\TestFramework\Unit\Helper\ObjectManager
Voici mon code:
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);
}
}
Je peux obtenir tous les objets que je veux en utilisant testObject \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
mais chaque fois que je veux obtenir\Magento\Framework\App\Config\ScopeConfigInterface
Erreur fatale: impossible d'instancier l'interface Magento \ Framework \ App \ Config \ ScopeConf igInterface dans C: \ xampp \ htdocs \ magento \ vendor \ magento \ framework \ TestFramework \ Un it \ Helper \ ObjectManager.php sur la ligne 162