org.onap migration
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / model / RelatedToPropertyTest.java
1 package org.onap.vid.aai.model;
2
3 import org.junit.Test;
4
5
6 public class RelatedToPropertyTest {
7
8         private RelatedToProperty createTestSubject() {
9                 return new RelatedToProperty();
10         }
11
12
13         @Test
14         public void testGetPropertyKey() throws Exception {
15                 RelatedToProperty testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.getPropertyKey();
21         }
22
23
24         @Test
25         public void testSetPropertyKey() throws Exception {
26                 RelatedToProperty testSubject;
27                 String propertyKey = "";
28
29                 // default test
30                 testSubject = createTestSubject();
31                 testSubject.setPropertyKey(propertyKey);
32         }
33
34
35         @Test
36         public void testGetPropertyValue() throws Exception {
37                 RelatedToProperty testSubject;
38                 String result;
39
40                 // default test
41                 testSubject = createTestSubject();
42                 result = testSubject.getPropertyValue();
43         }
44
45
46         @Test
47         public void testSetPropertyValue() throws Exception {
48                 RelatedToProperty testSubject;
49                 String propertyValue = "";
50
51                 // default test
52                 testSubject = createTestSubject();
53                 testSubject.setPropertyValue(propertyValue);
54         }
55 }