* @throws Exception
*/
@Test
public void getCategory() throws Exception
{
CatalogCategoryInfo attributes = connector.getCategory(CATEGORY_ID_1, null, Arrays.asList("name", "is_active",
"description"));
assertEquals(attributes.getName(), "SubCategory1");
assertEquals(1, attributes.getIs_active());
assertEquals(attributes.getDescription(), "This a subcategory!");
}