Beispiel #1
0
 public function testGetStoreRootCategory()
 {
     $root = $this->_model->getStoreRootCategory(1);
     $this->assertNotEmpty($root);
     $this->assertInstanceOf('Magento\\Framework\\Object', $root);
     $this->assertEquals(2, $root->getId());
     $this->assertEquals(1, $root->getParentId());
 }