Upgrade sonar plugin
[vid.git] / vid-app-common / src / test / java / org / openecomp / vid / aai / model / RelationshipDataTest.java
1 package org.openecomp.vid.aai.model;
2
3 import org.junit.Test;
4
5
6 public class RelationshipDataTest {
7
8         private RelationshipData createTestSubject() {
9                 return new RelationshipData();
10         }
11
12
13         @Test
14         public void testGetRelationshipKey() throws Exception {
15                 RelationshipData testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getRelationshipKey();
21         }
22
23
24         @Test
25         public void testSetRelationshipKey() throws Exception {
26                 RelationshipData testSubject;
27                 String relationshipKey = "";
28
29                 // default test
30                 testSubject = createTestSubject();
31                 testSubject.setRelationshipKey(relationshipKey);
32         }
33
34
35         @Test
36         public void testGetRelationshipValue() throws Exception {
37                 RelationshipData testSubject;
38                 String result;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 result = testSubject.getRelationshipValue();
43         }
44
45
46         @Test
47         public void testSetRelationshipValue() throws Exception {
48                 RelationshipData testSubject;
49                 String relationshipValue = "";
50
51                 // default test
52                 testSubject = createTestSubject();
53                 testSubject.setRelationshipValue(relationshipValue);
54         }
55 }