2274a41888b070b8e62917a0e18d0dabc3236245
[sdc.git] /
1 package org.openecomp.sdc.be.resources.data.auditing.model;
2
3 import org.junit.Test;
4
5 public class DistributionDataTest {
6
7         private DistributionData createTestSubject() {
8                 return new DistributionData("", "");
9         }
10
11         
12         @Test
13         public void testGetConsumerId() throws Exception {
14                 DistributionData testSubject;
15                 String result;
16
17                 // default test
18                 testSubject = createTestSubject();
19                 result = testSubject.getConsumerId();
20         }
21
22         
23         @Test
24         public void testGetResourceUrl() throws Exception {
25                 DistributionData testSubject;
26                 String result;
27
28                 // default test
29                 testSubject = createTestSubject();
30                 result = testSubject.getResourceUrl();
31         }
32 }