Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / model / ResultTest.java
1 package org.onap.vid.aai.model;
2
3 import org.junit.Test;
4
5 public class ResultTest {
6
7     private Result createTestSubject() {
8         return new Result();
9     }
10
11     @Test
12     public void testGetModel() throws Exception {
13         Result testSubject;
14         Model result;
15
16         // default test
17         testSubject = createTestSubject();
18         result = testSubject.getModel();
19     }
20
21     @Test
22     public void testSetModel() throws Exception {
23         Result testSubject;
24         Model model = null;
25
26         // default test
27         testSubject = createTestSubject();
28         testSubject.setModel(model);
29     }
30 }