Ejemplo n.º 1
0
 public function testGetJsonConfig()
 {
     $config = json_decode($this->_block->getJsonConfig());
     $this->assertNotNull($config);
     $this->assertNotEmpty($config);
 }
Ejemplo n.º 2
0
 /**
  * @magentoDataFixture Magento/Catalog/_files/product_with_dropdown_option.php
  */
 public function testGetJsonConfig()
 {
     $config = json_decode($this->block->getJsonConfig(), true);
     $configValues = array_values($config);
     $this->assertEquals($this->getExpectedJsonConfig(), array_values($configValues[0]));
 }