54fe824a3892535975aba9fb24ccebf88680bbfa
[sdc.git] /
1 package org.openecomp.sdc.be.distribution.api.client;
2
3 import org.junit.Test;
4
5 public class TopicUnregistrationResponseTest {
6
7         private TopicUnregistrationResponse createTestSubject() {
8                 return new TopicUnregistrationResponse("", "", CambriaOperationStatus.AUTHENTICATION_ERROR, CambriaOperationStatus.AUTHENTICATION_ERROR);
9         }
10
11         @Test
12         public void testGetDistrNotificationTopicName() throws Exception {
13                 TopicUnregistrationResponse testSubject;
14                 String result;
15
16                 // default test
17                 testSubject = createTestSubject();
18                 result = testSubject.getDistrNotificationTopicName();
19         }
20
21         @Test
22         public void testGetDistrStatusTopicName() throws Exception {
23                 TopicUnregistrationResponse testSubject;
24                 String result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.getDistrStatusTopicName();
29         }
30
31         @Test
32         public void testGetNotificationUnregisterResult() throws Exception {
33                 TopicUnregistrationResponse testSubject;
34                 CambriaOperationStatus result;
35
36                 // default test
37                 testSubject = createTestSubject();
38                 result = testSubject.getNotificationUnregisterResult();
39         }
40
41         @Test
42         public void testGetStatusUnregisterResult() throws Exception {
43                 TopicUnregistrationResponse testSubject;
44                 CambriaOperationStatus result;
45
46                 // default test
47                 testSubject = createTestSubject();
48                 result = testSubject.getStatusUnregisterResult();
49         }
50 }