1 package org.openecomp.sdc.be.distribution.api.client;
5 public class TopicRegistrationResponseTest {
7 private TopicRegistrationResponse createTestSubject() {
8 return new TopicRegistrationResponse();
12 public void testSetDistrNotificationTopicName() throws Exception {
13 TopicRegistrationResponse testSubject;
14 String distrNotificationTopicName = "";
17 testSubject = createTestSubject();
18 testSubject.setDistrNotificationTopicName(distrNotificationTopicName);
22 public void testSetDistrStatusTopicName() throws Exception {
23 TopicRegistrationResponse testSubject;
24 String distrStatusTopicName = "";
27 testSubject = createTestSubject();
28 testSubject.setDistrStatusTopicName(distrStatusTopicName);
32 public void testGetDistrNotificationTopicName() throws Exception {
33 TopicRegistrationResponse testSubject;
37 testSubject = createTestSubject();
38 result = testSubject.getDistrNotificationTopicName();
42 public void testGetDistrStatusTopicName() throws Exception {
43 TopicRegistrationResponse testSubject;
47 testSubject = createTestSubject();
48 result = testSubject.getDistrStatusTopicName();