Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConfigurableQtyTest.php
Go to the documentation of this file.
1 <?php
7 
10 
12 {
16  protected function createModel()
17  {
18  return $this->objectManager->getObject(ConfigurableQtyModifier::class);
19  }
20 
21  public function testModifyMeta()
22  {
23  $meta = ['initial' => 'meta'];
24 
25  $this->assertArrayHasKey('initial', $this->getModel()->modifyMeta($meta));
26  }
27 }