0d931e15df85d91af68a05b545d0e05673e6af1c
[sdc.git] /
1 package org.openecomp.sdc.be.externalapi.servlet.representation;
2
3 import javax.annotation.Generated;
4
5 import org.junit.Test;
6
7
8 public class ProductCategoryGroupMetadataTest {
9
10         private ProductCategoryGroupMetadata createTestSubject() {
11                 return new ProductCategoryGroupMetadata("", "", "");
12         }
13
14         
15         @Test
16         public void testGetCategory() throws Exception {
17                 ProductCategoryGroupMetadata testSubject;
18                 String result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.getCategory();
23         }
24
25         
26         @Test
27         public void testSetCategory() throws Exception {
28                 ProductCategoryGroupMetadata testSubject;
29                 String category = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setCategory(category);
34         }
35
36         
37         @Test
38         public void testGetSubCategory() throws Exception {
39                 ProductCategoryGroupMetadata testSubject;
40                 String result;
41
42                 // default test
43                 testSubject = createTestSubject();
44                 result = testSubject.getSubCategory();
45         }
46
47         
48         @Test
49         public void testSetSubCategory() throws Exception {
50                 ProductCategoryGroupMetadata testSubject;
51                 String subCategory = "";
52
53                 // default test
54                 testSubject = createTestSubject();
55                 testSubject.setSubCategory(subCategory);
56         }
57
58         
59         @Test
60         public void testGetGroup() throws Exception {
61                 ProductCategoryGroupMetadata testSubject;
62                 String result;
63
64                 // default test
65                 testSubject = createTestSubject();
66                 result = testSubject.getGroup();
67         }
68
69         
70         @Test
71         public void testSetGroup() throws Exception {
72                 ProductCategoryGroupMetadata testSubject;
73                 String group = "";
74
75                 // default test
76                 testSubject = createTestSubject();
77                 testSubject.setGroup(group);
78         }
79 }