1 package org.openecomp.sdc.be.externalapi.servlet.representation;
5 public class ServiceDistributionRespInfoTest {
7 private ServiceDistributionRespInfo createTestSubject() {
8 return new ServiceDistributionRespInfo();
12 public void testCtr() throws Exception {
13 new ServiceDistributionRespInfo("mock");
17 public void testGetDistributionId() throws Exception {
18 ServiceDistributionRespInfo testSubject;
22 testSubject = createTestSubject();
23 result = testSubject.getDistributionId();
27 public void testSetDistributionId() throws Exception {
28 ServiceDistributionRespInfo testSubject;
29 String distributionId = "";
32 testSubject = createTestSubject();
33 testSubject.setDistributionId(distributionId);