Package com.magento.api

Examples of com.magento.api.CatalogCategoryEntity


     
      CatalogCategoryTree tree = (CatalogCategoryTree) response.getMessage().getPayload();
      assertTrue(tree.getCategory_id() == parentCategoryId);
     
      CatalogCategoryEntity[] children = tree.getChildren();
      CatalogCategoryEntity child = children[0]; // We only created 1 child.
     
      assertTrue(child.getCategory_id() == childCategoryId);
      assertTrue(child.getParent_id() == parentCategoryId);
    }
    catch (Exception e) {
      e.printStackTrace();
      fail();
    }
View Full Code Here

TOP

Related Classes of com.magento.api.CatalogCategoryEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.