Merge "Upgraded antrun plugin for JaCoCo to 1.6"
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / resources / data / CapabilityTypeDataTest.java
1 package org.openecomp.sdc.be.resources.data;
2
3 import java.util.Map;
4
5 import javax.annotation.Generated;
6
7 import org.junit.Test;
8 import org.openecomp.sdc.be.datatypes.elements.CapabilityTypeDataDefinition;
9
10
11 public class CapabilityTypeDataTest {
12
13         private CapabilityTypeData createTestSubject() {
14                 return new CapabilityTypeData();
15         }
16
17         
18         @Test
19         public void testToGraphMap() throws Exception {
20                 CapabilityTypeData testSubject;
21                 Map<String, Object> result;
22
23                 // default test
24                 testSubject = createTestSubject();
25                 result = testSubject.toGraphMap();
26         }
27
28         
29         @Test
30         public void testGetCapabilityTypeDataDefinition() throws Exception {
31                 CapabilityTypeData testSubject;
32                 CapabilityTypeDataDefinition result;
33
34                 // default test
35                 testSubject = createTestSubject();
36                 result = testSubject.getCapabilityTypeDataDefinition();
37         }
38
39         
40         @Test
41         public void testSetCapabilityTypeDataDefinition() throws Exception {
42                 CapabilityTypeData testSubject;
43                 CapabilityTypeDataDefinition capabilityTypeDataDefinition = null;
44
45                 // default test
46                 testSubject = createTestSubject();
47                 testSubject.setCapabilityTypeDataDefinition(capabilityTypeDataDefinition);
48         }
49
50         
51         @Test
52         public void testToString() throws Exception {
53                 CapabilityTypeData testSubject;
54                 String result;
55
56                 // default test
57                 testSubject = createTestSubject();
58                 result = testSubject.toString();
59         }
60
61         
62         @Test
63         public void testGetUniqueId() throws Exception {
64                 CapabilityTypeData testSubject;
65                 String result;
66
67                 // default test
68                 testSubject = createTestSubject();
69                 result = testSubject.getUniqueId();
70         }
71 }