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