Merge from ECOMP's repository
[vid.git] / vid-app-common / src / test / java / org / onap / vid / mso / rest / AsyncRequestStatusTest.java
1 package org.onap.vid.mso.rest;
2
3 import org.junit.Test;
4
5
6 public class AsyncRequestStatusTest {
7
8         private AsyncRequestStatus createTestSubject() {
9                 return new AsyncRequestStatus();
10         }
11
12         
13         @Test
14         public void testToString() throws Exception {
15                 AsyncRequestStatus testSubject;
16                 String result;
17
18                 // default test
19                 testSubject = createTestSubject();
20                 result = testSubject.toString();
21         }
22
23         
24         @Test
25         public void testHashCode() throws Exception {
26                 AsyncRequestStatus testSubject;
27                 int result;
28
29                 // default test
30                 testSubject = createTestSubject();
31                 result = testSubject.hashCode();
32         }
33
34         
35         @Test
36         public void testEquals() throws Exception {
37                 AsyncRequestStatus testSubject;
38                 Object other = null;
39                 boolean result;
40
41                 // default test
42                 testSubject = createTestSubject();
43                 result = testSubject.equals(other);
44         }
45 }