Refactoring Consolidation Service
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / RequirementInstanceTest.java
1 package org.openecomp.sdc.be.model;
2
3 import org.junit.Test;
4
5
6 public class RequirementInstanceTest {
7
8         private RequirementInstance createTestSubject() {
9                 return new RequirementInstance();
10         }
11
12         
13         @Test
14         public void testGetNode() throws Exception {
15                 RequirementInstance testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getNode();
21         }
22
23         
24         @Test
25         public void testSetNode() throws Exception {
26                 RequirementInstance testSubject;
27                 String node = "";
28
29                 // default test
30                 testSubject = createTestSubject();
31                 testSubject.setNode(node);
32         }
33
34         
35         @Test
36         public void testGetRelationship() throws Exception {
37                 RequirementInstance testSubject;
38                 RelationshipImpl result;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 result = testSubject.getRelationship();
43         }
44
45         
46         @Test
47         public void testSetRelationship() throws Exception {
48                 RequirementInstance testSubject;
49                 RelationshipImpl relationship = null;
50
51                 // default test
52                 testSubject = createTestSubject();
53                 testSubject.setRelationship(relationship);
54         }
55
56         
57         @Test
58         public void testToString() throws Exception {
59                 RequirementInstance testSubject;
60                 String result;
61
62                 // default test
63                 testSubject = createTestSubject();
64                 result = testSubject.toString();
65         }
66 }