329db3bc4d252a3111cb62523650d77d07653716
[sdc.git] /
1 package org.openecomp.sdc.be.externalapi.servlet.representation;
2
3 import org.junit.Test;
4
5 public class ServiceDistributionRespInfoTest {
6
7         private ServiceDistributionRespInfo createTestSubject() {
8                 return new ServiceDistributionRespInfo();
9         }
10
11         @Test
12         public void testCtr() throws Exception {
13                 new ServiceDistributionRespInfo("mock");
14         }
15         
16         @Test
17         public void testGetDistributionId() throws Exception {
18                 ServiceDistributionRespInfo testSubject;
19                 String result;
20
21                 // default test
22                 testSubject = createTestSubject();
23                 result = testSubject.getDistributionId();
24         }
25
26         @Test
27         public void testSetDistributionId() throws Exception {
28                 ServiceDistributionRespInfo testSubject;
29                 String distributionId = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setDistributionId(distributionId);
34         }
35 }