Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConfigurableAttributeSetHandlerTest.php
Go to the documentation of this file.
1 <?php
7 
10 
11 class ConfigurableAttributeSetHandlerTest extends \PHPUnit\Framework\TestCase
12 {
16  private $configurableAttributeSetHandler;
17 
21  private $objectManagerHelper;
22 
23  protected function setUp()
24  {
25  $this->objectManagerHelper = new ObjectManagerHelper($this);
26  $this->configurableAttributeSetHandler = $this->objectManagerHelper->getObject(
27  ConfigurableAttributeSetHandler::class
28  );
29  }
30 
31  public function testModifyMeta()
32  {
33  $this->assertArrayHasKey(
35  $this->configurableAttributeSetHandler->modifyMeta([])
36  );
37  }
38 }