1 package org.openecomp.sdc.be.externalapi.servlet.representation;
3 import javax.annotation.Generated;
8 public class ProductCategoryGroupMetadataTest {
10 private ProductCategoryGroupMetadata createTestSubject() {
11 return new ProductCategoryGroupMetadata("", "", "");
16 public void testGetCategory() throws Exception {
17 ProductCategoryGroupMetadata testSubject;
21 testSubject = createTestSubject();
22 result = testSubject.getCategory();
27 public void testSetCategory() throws Exception {
28 ProductCategoryGroupMetadata testSubject;
32 testSubject = createTestSubject();
33 testSubject.setCategory(category);
38 public void testGetSubCategory() throws Exception {
39 ProductCategoryGroupMetadata testSubject;
43 testSubject = createTestSubject();
44 result = testSubject.getSubCategory();
49 public void testSetSubCategory() throws Exception {
50 ProductCategoryGroupMetadata testSubject;
51 String subCategory = "";
54 testSubject = createTestSubject();
55 testSubject.setSubCategory(subCategory);
60 public void testGetGroup() throws Exception {
61 ProductCategoryGroupMetadata testSubject;
65 testSubject = createTestSubject();
66 result = testSubject.getGroup();
71 public void testSetGroup() throws Exception {
72 ProductCategoryGroupMetadata testSubject;
76 testSubject = createTestSubject();
77 testSubject.setGroup(group);